public static enum Actions.Style extends Enum<Actions.Style>
Modifier and Type | Field and Description |
---|---|
int |
jfaceStyle |
Modifier and Type | Method and Description |
---|---|
static Actions.Style |
of(IAction action)
Returns the Style of the given IAction.
|
static Actions.Style |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Actions.Style[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Actions.Style PUSH
public static final Actions.Style CHECK
public static final Actions.Style RADIO
public static final Actions.Style MENU
public static Actions.Style[] values()
for (Actions.Style c : Actions.Style.values()) System.out.println(c);
public static Actions.Style 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 nullpublic static Actions.Style of(IAction action)