public static enum AceCommandDescription.MultiSelectAction extends java.lang.Enum<AceCommandDescription.MultiSelectAction>
Enum Constant and Description |
---|
forEach
Execute command for each selection in multi-select mode
|
forEachLine
Execute command for each selection grouped by lines in multi-select mode
|
single
Execute command once treating multi-selection as a single range
|
Modifier and Type | Method and Description |
---|---|
static AceCommandDescription.MultiSelectAction |
fromString(java.lang.String value) |
static AceCommandDescription.MultiSelectAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AceCommandDescription.MultiSelectAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AceCommandDescription.MultiSelectAction forEach
public static final AceCommandDescription.MultiSelectAction forEachLine
public static final AceCommandDescription.MultiSelectAction single
public static AceCommandDescription.MultiSelectAction[] values()
for (AceCommandDescription.MultiSelectAction c : AceCommandDescription.MultiSelectAction.values()) System.out.println(c);
public static AceCommandDescription.MultiSelectAction 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 nullpublic static AceCommandDescription.MultiSelectAction fromString(java.lang.String value)