public static enum InvokeConstraint.Constraint extends java.lang.Enum<InvokeConstraint.Constraint>
Enum Constant and Description |
---|
ALWAYS
Perform the action each time the rule condition evaluates to true.
|
ONCE_ONLY
Perform the action only once, even if the action condition evaluated to true multiple times.
|
TIMED
Upon the first time, start a timer based execution.
|
Modifier and Type | Method and Description |
---|---|
static InvokeConstraint.Constraint |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InvokeConstraint.Constraint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InvokeConstraint.Constraint ONCE_ONLY
public static final InvokeConstraint.Constraint ALWAYS
public static final InvokeConstraint.Constraint TIMED
public static InvokeConstraint.Constraint[] values()
for (InvokeConstraint.Constraint c : InvokeConstraint.Constraint.values()) System.out.println(c);
public static InvokeConstraint.Constraint 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 nullCopyright © 2000-2014 TIBCO Inc. All Rights Reserved.