public static enum NoteBlockEvent.Instrument extends java.lang.Enum<NoteBlockEvent.Instrument>
NoteBlockEvent.Play#setInstrument(Instrument)| Enum Constant and Description | 
|---|
| BASSDRUM | 
| BASSGUITAR | 
| CLICKS | 
| PIANO | 
| SNARE | 
| Modifier and Type | Method and Description | 
|---|---|
| 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 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 null