public enum ScreenLayoutMode extends java.lang.Enum<ScreenLayoutMode>
Enum Constant and Description |
---|
Apply
If the guest is already at desired mode then the API might avoid setting the mode.
|
Attach
Attach new screens and always set the new mode for existing screens.
|
Reset
Always set the new mode even if the guest is already at desired mode.
|
Modifier and Type | Method and Description |
---|---|
static ScreenLayoutMode |
fromValue(long v) |
static ScreenLayoutMode |
fromValue(java.lang.String v) |
int |
value() |
static ScreenLayoutMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScreenLayoutMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScreenLayoutMode Apply
public static final ScreenLayoutMode Reset
public static final ScreenLayoutMode Attach
public static ScreenLayoutMode[] values()
for (ScreenLayoutMode c : ScreenLayoutMode.values()) System.out.println(c);
public static ScreenLayoutMode 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 int value()
public static ScreenLayoutMode fromValue(long v)
public static ScreenLayoutMode fromValue(java.lang.String v)