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 array,
int index)
Return the element of the array at the specified index.
|
static boolean |
Array.getBoolean(Object array,
int index)
Return the element of the array at the specified index,
converted to a boolean if possible.
|
static byte |
Array.getByte(Object array,
int index)
Return the element of the array at the specified index,
converted to a byte if possible.
|
static char |
Array.getChar(Object array,
int index)
Return the element of the array at the specified index,
converted to a char if possible.
|
static double |
Array.getDouble(Object array,
int index)
Return the element of the array at the specified index,
converted to a double if possible.
|
static float |
Array.getFloat(Object array,
int index)
Return the element of the array at the specified index,
converted to a float if possible.
|
static int |
Array.getInt(Object array,
int index)
Return the element of the array at the specified index,
converted to an int if possible.
|
static long |
Array.getLong(Object array,
int index)
Return the element of the array at the specified index,
converted to a long if possible.
|
static short |
Array.getShort(Object array,
int index)
Return the element of the array at the specified index,
converted to a short if possible.
|
static void |
Array.set(Object array,
int index,
Object value)
Set the element of the array at the specified index to the value.
|
static void |
Array.setBoolean(Object array,
int index,
boolean value)
Set the element of the array at the specified index to the boolean
value.
|
static void |
Array.setByte(Object array,
int index,
byte value)
Set the element of the array at the specified index to the byte
value.
|
static void |
Array.setChar(Object array,
int index,
char value)
Set the element of the array at the specified index to the char
value.
|
static void |
Array.setDouble(Object array,
int index,
double value)
Set the element of the array at the specified index to the double
value.
|
static void |
Array.setFloat(Object array,
int index,
float value)
Set the element of the array at the specified index to the float
value.
|
static void |
Array.setInt(Object array,
int index,
int value)
Set the element of the array at the specified index to the int
value.
|
static void |
Array.setLong(Object array,
int index,
long value)
Set the element of the array at the specified index to the long
value.
|
static void |
Array.setShort(Object array,
int index,
short value)
Set the element of the array at the specified index to the short
value.
|
Modifier and Type | Method and Description |
---|---|
MidiEvent |
Track.get(int index)
Obtains the event at the specified index.
|
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2023, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.