public static enum Constants.ScreenScenarioType extends java.lang.Enum<Constants.ScreenScenarioType>
Enum Constant and Description |
---|
SCREEN_SCENARIO_DOCUMENT
1: Document.
|
SCREEN_SCENARIO_GAMING
2: Game.
|
SCREEN_SCENARIO_VIDEO
3: (Default) Video.
|
Modifier and Type | Method and Description |
---|---|
static int |
getValue(Constants.ScreenScenarioType type) |
static Constants.ScreenScenarioType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constants.ScreenScenarioType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.ScreenScenarioType SCREEN_SCENARIO_DOCUMENT
public static final Constants.ScreenScenarioType SCREEN_SCENARIO_GAMING
public static final Constants.ScreenScenarioType SCREEN_SCENARIO_VIDEO
public static Constants.ScreenScenarioType[] values()
for (Constants.ScreenScenarioType c : Constants.ScreenScenarioType.values()) System.out.println(c);
public static Constants.ScreenScenarioType 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 int getValue(Constants.ScreenScenarioType type)