public static enum Store.FlowRule extends Enum<Store.FlowRule>
| Enum Constant and Description | 
|---|
BOTH_TO_ELSE
Both stores flow to the else of successor. 
 | 
BOTH_TO_THEN
Both stores flow to the then of successor. 
 | 
EACH_TO_EACH
The normal case: then store flows to the then store, and else store flows to the else
 store. 
 | 
ELSE_TO_BOTH
Else store flows to both then and else of successor. 
 | 
ELSE_TO_ELSE
Else store flows to the else of successor. 
 | 
THEN_TO_BOTH
Then store flows to both then and else of successor. 
 | 
THEN_TO_THEN
Then store flows to the then of successor. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static Store.FlowRule | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static Store.FlowRule[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final Store.FlowRule EACH_TO_EACH
public static final Store.FlowRule THEN_TO_BOTH
public static final Store.FlowRule ELSE_TO_BOTH
public static final Store.FlowRule THEN_TO_THEN
public static final Store.FlowRule ELSE_TO_ELSE
public static final Store.FlowRule BOTH_TO_THEN
public static final Store.FlowRule BOTH_TO_ELSE
public static Store.FlowRule[] values()
for (Store.FlowRule c : Store.FlowRule.values()) System.out.println(c);
public static Store.FlowRule valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null