|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<MidiRegisteredParameter>
net.charlesames.music.midi.MidiRegisteredParameter
public enum MidiRegisteredParameter
MIDI Registered Parameter Definitions
| Enum Constant Summary | |
|---|---|
MASTER_COARSE_TUNING
|
|
MASTER_FINE_TUNING
|
|
NULL
|
|
PITCH_BEND_RANGE
|
|
TUNING_BANK_SELECT
|
|
TUNING_PROGRAM_SELECT
|
|
| Method Summary | |
|---|---|
java.lang.String |
getDescription()
Get a description of the MIDI registered parameter. |
int |
lsb()
Get the least significant bit. |
int |
msb()
Get the most significant bit. |
static MidiRegisteredParameter |
valueOf(int msb,
int lsb)
Gets the RegisteredParameter instance associated with the indicated msb and lsb. |
static MidiRegisteredParameter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static MidiRegisteredParameter[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final MidiRegisteredParameter PITCH_BEND_RANGE
public static final MidiRegisteredParameter MASTER_FINE_TUNING
public static final MidiRegisteredParameter MASTER_COARSE_TUNING
public static final MidiRegisteredParameter TUNING_PROGRAM_SELECT
public static final MidiRegisteredParameter TUNING_BANK_SELECT
public static final MidiRegisteredParameter NULL
| Method Detail |
|---|
public static MidiRegisteredParameter[] values()
for (MidiRegisteredParameter c : MidiRegisteredParameter.values()) System.out.println(c);
public static MidiRegisteredParameter 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 name
java.lang.NullPointerException - if the argument is nullpublic java.lang.String getDescription()
public int msb()
public int lsb()
public static MidiRegisteredParameter valueOf(int msb,
int lsb)
msb - The most significant bit.lsb - The least significant bit.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||