public enum ConditionClassType extends java.lang.Enum<ConditionClassType>
| Enum Constant and Description |
|---|
evaluator
Indicates an evaluator condition -- one that is evaluated if and only if a task's trigger condition has occurred.
|
trigger
Indicates a trigger condition -- one associated with a specific plugin that knows how to detect when such
a condition occurs.
|
| Modifier and Type | Method and Description |
|---|---|
static ConditionClassType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConditionClassType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConditionClassType trigger
public static final ConditionClassType evaluator
public static ConditionClassType[] values()
for (ConditionClassType c : ConditionClassType.values()) System.out.println(c);
public static ConditionClassType 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 © 2015 Whizzo Software LLC. All rights reserved.