public enum SpecialActionType extends java.lang.Enum<SpecialActionType>
| Enum Constant | Description |
|---|---|
ADD |
|
CLEAR_ALL |
|
COPY |
|
CUT |
|
DOWN |
|
EDIT |
|
MISC |
|
PASTE |
|
REMOVE |
|
RENAME |
|
SELECT_ALL |
|
UP |
| Modifier and Type | Method | Description |
|---|---|---|
static SpecialActionType |
valueOf(java.lang.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 final SpecialActionType UP
public static final SpecialActionType DOWN
public static SpecialActionType[] values()
for (SpecialActionType c : SpecialActionType.values()) System.out.println(c);
public static SpecialActionType 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 nullCopyright © 2012–2018 MARID software development group. All rights reserved.