Package org.bukkit
Enum Instrument
java.lang.Object
java.lang.Enum<Instrument>
org.bukkit.Instrument
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Instrument>
,java.lang.constant.Constable
public enum Instrument extends java.lang.Enum<Instrument>
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description BASS_DRUM
Bass drum is normally played when a note block is on top of a stone-like blockBASS_GUITAR
Bass guitar is normally played when a note block is on top of a wooden block.PIANO
Piano is the standard instrument for a note block.SNARE_DRUM
Snare drum is normally played when a note block is on top of a sandy block.STICKS
Sticks are normally played when a note block is on top of a glass block. -
Method Summary
Modifier and Type Method Description static Instrument
getByType(byte type)
Deprecated.Magic valuebyte
getType()
Deprecated.Magic valuestatic Instrument
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Instrument[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
PIANO
Piano is the standard instrument for a note block. -
BASS_DRUM
Bass drum is normally played when a note block is on top of a stone-like block -
SNARE_DRUM
Snare drum is normally played when a note block is on top of a sandy block. -
STICKS
Sticks are normally played when a note block is on top of a glass block. -
BASS_GUITAR
Bass guitar is normally played when a note block is on top of a wooden block.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getType
@Deprecated public byte getType()Deprecated.Magic value- Returns:
- The type ID of this instrument.
-
getByType
Deprecated.Magic valueGet an instrument by its type ID.- Parameters:
type
- The type ID- Returns:
- The instrument
-