public enum ScreenPositionTypeValues extends java.lang.Enum<ScreenPositionTypeValues>
List of position type in the layout of Screens.
Enum Constant and Description |
---|
_A
Absolute positioning
|
NONE
Relative positioning
|
Modifier and Type | Method and Description |
---|---|
static ScreenPositionTypeValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScreenPositionTypeValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScreenPositionTypeValues _A
Absolute positioning
public static final ScreenPositionTypeValues NONE
Relative positioning
public static ScreenPositionTypeValues 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 nullpublic static ScreenPositionTypeValues[] values()
for (ScreenPositionTypeValues c : ScreenPositionTypeValues.values()) System.out.println(c);