| Package | Description |
|---|---|
| java.lang.reflect |
Provides classes and interfaces for obtaining reflective information about classes and objects.
|
| javax.sound.midi |
Provides interfaces and classes for I/O, sequencing, and synthesis of MIDI (Musical Instrument Digital Interface) data.
|
| Modifier and Type | Method and Description |
|---|---|
static Object |
Array.get(Object
Returns the value of the indexed component in the specified array object.
|
static boolean |
Array.getBoolean(Object
Returns the value of the indexed component in the specified array object, as a
boolean.
|
static byte |
Array.getByte(Object
Returns the value of the indexed component in the specified array object, as a
byte.
|
static char |
Array.getChar(Object
Returns the value of the indexed component in the specified array object, as a
char.
|
static double |
Array.getDouble(Object
Returns the value of the indexed component in the specified array object, as a
double.
|
static float |
Array.getFloat(Object
Returns the value of the indexed component in the specified array object, as a
float.
|
static int |
Array.getInt(Object
Returns the value of the indexed component in the specified array object, as an
int.
|
static long |
Array.getLong(Object
Returns the value of the indexed component in the specified array object, as a
long.
|
static short |
Array.getShort(Object
Returns the value of the indexed component in the specified array object, as a
short.
|
static void |
Array.set(Object
Sets the value of the indexed component of the specified array object to the specified new value.
|
static void |
Array.setBoolean(Object
Sets the value of the indexed component of the specified array object to the specified
boolean value.
|
static void |
Array.setByte(Object
Sets the value of the indexed component of the specified array object to the specified
byte value.
|
static void |
Array.setChar(Object
Sets the value of the indexed component of the specified array object to the specified
char value.
|
static void |
Array.setDouble(Object
Sets the value of the indexed component of the specified array object to the specified
double value.
|
static void |
Array.setFloat(Object
Sets the value of the indexed component of the specified array object to the specified
float value.
|
static void |
Array.setInt(Object
Sets the value of the indexed component of the specified array object to the specified
int value.
|
static void |
Array.setLong(Object
Sets the value of the indexed component of the specified array object to the specified
long value.
|
static void |
Array.setShort(Object
Sets the value of the indexed component of the specified array object to the specified
short value.
|
| Modifier and Type | Method and Description |
|---|---|
MidiEvent |
Track.get(int index)
Obtains the event at the specified index.
|