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