public enum PlayLevel extends java.lang.Enum<PlayLevel>
EsxPackage.getPlayLevel()
Enum Constant and Description |
---|
DB_0
The 'DB 0' literal object.
|
DB_1
The 'DB 1' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
DB_0_VALUE
The 'DB 0' literal value.
|
static int |
DB_1_VALUE
The 'DB 1' literal value.
|
static java.util.List<PlayLevel> |
VALUES
A public read-only list of all the 'Play Level' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static PlayLevel |
get(int value)
Returns the 'Play Level' literal with the specified integer value.
|
static PlayLevel |
get(java.lang.String literal)
Returns the 'Play Level' literal with the specified literal value.
|
static PlayLevel |
getByName(java.lang.String name)
Returns the 'Play Level' literal with the specified name.
|
java.lang.String |
getLiteral() |
java.lang.String |
getName() |
int |
getValue() |
java.lang.String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static PlayLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PlayLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlayLevel DB_0
DB_0_VALUE
public static final PlayLevel DB_1
DB_1_VALUE
public static final int DB_0_VALUE
If the meaning of 'DB 0' literal object isn't clear, there really should be more of a description here...
DB_0
,
Constant Field Valuespublic static final int DB_1_VALUE
If the meaning of 'DB 1' literal object isn't clear, there really should be more of a description here...
DB_1
,
Constant Field Valuespublic static final java.util.List<PlayLevel> VALUES
public static PlayLevel[] values()
for (PlayLevel c : PlayLevel.values()) System.out.println(c);
public static PlayLevel 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 PlayLevel get(java.lang.String literal)
public static PlayLevel getByName(java.lang.String name)
public static PlayLevel get(int value)
public int getValue()
public java.lang.String getName()
public java.lang.String getLiteral()
public java.lang.String toString()
toString
in class java.lang.Enum<PlayLevel>