protected static enum BasicAction.MultiSelectionBehavior extends java.lang.Enum<BasicAction.MultiSelectionBehavior>
| Enum Constant and Description | 
|---|
IGNORE
Action doesn't care about multi-selections 
 | 
PERFORM
Action will perform on multi-selections. 
 | 
REJECT
Action must not execute if there are multi-selections 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static BasicAction.MultiSelectionBehavior | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static BasicAction.MultiSelectionBehavior[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final BasicAction.MultiSelectionBehavior PERFORM
public static final BasicAction.MultiSelectionBehavior IGNORE
public static final BasicAction.MultiSelectionBehavior REJECT
public static BasicAction.MultiSelectionBehavior[] values()
for (BasicAction.MultiSelectionBehavior c : BasicAction.MultiSelectionBehavior.values()) System.out.println(c);
public static BasicAction.MultiSelectionBehavior 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 null