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