public enum SoundEventType extends Enum<SoundEventType>
| Enum Constant and Description |
|---|
child_voice |
fable_voice |
man_voice |
musical_voice |
robot_voice |
song |
specific_sound |
tune |
tune_and_song |
unknown |
voice |
woman_voice |
| Modifier and Type | Method and Description |
|---|---|
static SoundEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SoundEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SoundEventType unknown
public static final SoundEventType voice
public static final SoundEventType child_voice
public static final SoundEventType man_voice
public static final SoundEventType woman_voice
public static final SoundEventType fable_voice
public static final SoundEventType robot_voice
public static final SoundEventType musical_voice
public static final SoundEventType tune
public static final SoundEventType song
public static final SoundEventType tune_and_song
public static final SoundEventType specific_sound
public static SoundEventType[] values()
for (SoundEventType c : SoundEventType.values()) System.out.println(c);
public static SoundEventType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is null