public enum AppearanceMode extends java.lang.Enum<AppearanceMode>
| Enum Constant and Description |
|---|
FULLSCREEN_MODE
Full screen mode
|
WINDOWED_MODE
Windowed mode with translucent
|
| Modifier and Type | Method and Description |
|---|---|
static AppearanceMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AppearanceMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="WINDOWED_MODE") public static final AppearanceMode WINDOWED_MODE
@SerializedName(value="FULLSCREEN_MODE") public static final AppearanceMode FULLSCREEN_MODE
public static AppearanceMode[] values()
for (AppearanceMode c : AppearanceMode.values()) System.out.println(c);
public static AppearanceMode 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 null