public static enum Variable.BindingTime extends java.lang.Enum<Variable.BindingTime>
Enum Constant and Description |
---|
INCREMENTAL
Bind the variable on each incoming event which evaluates to true
|
INITIAL
Bind the variable only on the first incoming event which evaluates to true
|
Modifier and Type | Method and Description |
---|---|
static Variable.BindingTime |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Variable.BindingTime[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Variable.BindingTime INITIAL
public static final Variable.BindingTime INCREMENTAL
public static Variable.BindingTime[] values()
for (Variable.BindingTime c : Variable.BindingTime.values()) System.out.println(c);
public static Variable.BindingTime valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null