public enum SpecialActionType extends Enum<SpecialActionType>
| Enum Constant and Description |
|---|
ADD |
CLEAR_ALL |
COPY |
CUT |
EDIT |
MISC |
PASTE |
REMOVE |
RENAME |
SELECT_ALL |
| Modifier and Type | Method and Description |
|---|---|
static SpecialActionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpecialActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpecialActionType ADD
public static final SpecialActionType REMOVE
public static final SpecialActionType CLEAR_ALL
public static final SpecialActionType SELECT_ALL
public static final SpecialActionType CUT
public static final SpecialActionType COPY
public static final SpecialActionType PASTE
public static final SpecialActionType EDIT
public static final SpecialActionType MISC
public static final SpecialActionType RENAME
public static SpecialActionType[] values()
for (SpecialActionType c : SpecialActionType.values()) System.out.println(c);
public static SpecialActionType 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 nullCopyright © 2012–2017 MARID software development group. All rights reserved.