public enum StageAction extends Enum<StageAction>
| Enum Constant and Description |
|---|
destroy
Destroy a stage.
|
hide
Hide a stage.
|
show
Show a stage.
|
| Modifier and Type | Method and Description |
|---|---|
static StageAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StageAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StageAction show
public static final StageAction hide
public static final StageAction destroy
public static StageAction[] values()
for (StageAction c : StageAction.values()) System.out.println(c);
public static StageAction 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 © 2011–2014 JRebirth OSS. All rights reserved.