public static enum Store.FlowRule extends Enum<Store.FlowRule>
| Enum Constant and Description | 
|---|
EACH_TO_EACH  | 
ELSE_TO_BOTH  | 
ELSE_TO_ELSE  | 
THEN_TO_BOTH  | 
THEN_TO_THEN  | 
| 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 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