public enum RuleTransition extends java.lang.Enum<RuleTransition>
Enum Constant and Description |
---|
FALSE_FALSE
false to false transition.
|
FALSE_TRUE
false to false transition.
|
TRUE_FALSE
true to false transition.
|
TRUE_TRUE
true to true transition.
|
Modifier and Type | Method and Description |
---|---|
static RuleTransition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RuleTransition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RuleTransition FALSE_TRUE
public static final RuleTransition TRUE_FALSE
public static final RuleTransition TRUE_TRUE
public static final RuleTransition FALSE_FALSE
public static RuleTransition[] values()
for (RuleTransition c : RuleTransition.values()) System.out.println(c);
public static RuleTransition 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.