public enum StageAlign extends Enum<StageAlign>
| Enum Constant and Description |
|---|
BOTTOM |
BOTTOM_LEFT |
BOTTOM_RIGHT |
TOP |
TOP_LEFT |
TOP_RIGHT |
| Modifier and Type | Method and Description |
|---|---|
String |
toNative() |
static StageAlign |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StageAlign[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StageAlign BOTTOM
public static final StageAlign BOTTOM_LEFT
public static final StageAlign BOTTOM_RIGHT
public static final StageAlign TOP
public static final StageAlign TOP_LEFT
public static final StageAlign TOP_RIGHT
public static StageAlign[] values()
for (StageAlign c : StageAlign.values()) System.out.println(c);
public static StageAlign 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 String toNative()
Copyright © 2013. All Rights Reserved.