public static enum NoteBlockEvent.Instrument extends java.lang.Enum<NoteBlockEvent.Instrument>
NoteBlockEvent.Play#setInstrument(Instrument)
Enum Constant and Description |
---|
BASSDRUM |
BASSGUITAR |
BELL |
CHIME |
CLICKS |
FLUTE |
GUITAR |
PIANO |
SNARE |
XYLOPHONE |
Modifier and Type | Field and Description |
---|---|
private static NoteBlockEvent.Instrument[] |
values |
Modifier and Type | Method and Description |
---|---|
(package private) static NoteBlockEvent.Instrument |
fromId(int id) |
static NoteBlockEvent.Instrument |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NoteBlockEvent.Instrument[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NoteBlockEvent.Instrument PIANO
public static final NoteBlockEvent.Instrument BASSDRUM
public static final NoteBlockEvent.Instrument SNARE
public static final NoteBlockEvent.Instrument CLICKS
public static final NoteBlockEvent.Instrument BASSGUITAR
public static final NoteBlockEvent.Instrument FLUTE
public static final NoteBlockEvent.Instrument BELL
public static final NoteBlockEvent.Instrument GUITAR
public static final NoteBlockEvent.Instrument CHIME
public static final NoteBlockEvent.Instrument XYLOPHONE
private static final NoteBlockEvent.Instrument[] values
public static NoteBlockEvent.Instrument[] values()
for (NoteBlockEvent.Instrument c : NoteBlockEvent.Instrument.values()) System.out.println(c);
public static NoteBlockEvent.Instrument 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 nullstatic NoteBlockEvent.Instrument fromId(int id)