public static enum SoundEntity.Where extends java.lang.Enum<SoundEntity.Where>
INSIDE
: the sound is a reading played within the place contour;AROUND
: the sound is audible around the place by a given SoundEntity.around_extent_
factor;ELSEWHERE
: the playback is played anywhere else.
TODO: @implements ELSEWHERE
Modifier and Type | Method and Description |
---|---|
static SoundEntity.Where |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SoundEntity.Where[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SoundEntity.Where INSIDE
public static final SoundEntity.Where AROUND
public static final SoundEntity.Where ELSEWHERE
public static SoundEntity.Where[] values()
for (SoundEntity.Where c : SoundEntity.Where.values()) System.out.println(c);
public static SoundEntity.Where 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