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