Package games.stendhal.common.constants
Enum Class SoundLayer
- All Implemented Interfaces:
Serializable
,Comparable<SoundLayer>
,Constable
the layer on which a sound is played
- Author:
- hendrik
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionsounds that are related to the zone and are in-game, like a waterfall, wind, the hammering at the blacksmithnice background music which is considered out-of-gamenoise made by creatures and NPCsnoise made by weapons and armoruser interface feedback, opening of windows, private message notification -
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic SoundLayer
Returns the enum constant of this class with the specified name.static SoundLayer[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BACKGROUND_MUSIC
nice background music which is considered out-of-game -
AMBIENT_SOUND
sounds that are related to the zone and are in-game, like a waterfall, wind, the hammering at the blacksmith -
CREATURE_NOISE
noise made by creatures and NPCs -
FIGHTING_NOISE
noise made by weapons and armor -
USER_INTERFACE
user interface feedback, opening of windows, private message notification
-
-
Field Details
-
groupName
the internal name of the sound layer
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-