public enum ActionCommands extends Enum<ActionCommands>
created on: 07.02.2014
| Enum Constant and Description |
|---|
ABOUT |
ARRANGE |
EXIT |
EXPORT |
OPEN_FILE |
OPEN_RECENT |
OPEN_SERIES |
OPEN_URL |
OSX_FULLSCREEN |
REFRESH |
SHOW_LICENSE |
SHOW_README |
WATCH |
ZOOM |
| Modifier and Type | Method and Description |
|---|---|
static ActionCommands |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActionCommands[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionCommands ABOUT
public static final ActionCommands ARRANGE
public static final ActionCommands EXIT
public static final ActionCommands EXPORT
public static final ActionCommands SHOW_LICENSE
public static final ActionCommands OPEN_FILE
public static final ActionCommands OPEN_SERIES
public static final ActionCommands OPEN_URL
public static final ActionCommands OPEN_RECENT
public static final ActionCommands OSX_FULLSCREEN
public static final ActionCommands SHOW_README
public static final ActionCommands REFRESH
public static final ActionCommands WATCH
public static final ActionCommands ZOOM
public static ActionCommands[] values()
for (ActionCommands c : ActionCommands.values()) System.out.println(c);
public static ActionCommands 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 © 2019. All rights reserved.