Package | Description |
---|---|
java.lang.reflect |
Provides classes and interfaces for obtaining reflective
information about classes and objects.
|
javax.realtime.device |
JamaicaVM's implementation of the RTSJ Device Module.
|
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)
Returns the value of the indexed component in the specified
array object.
|
static boolean |
Array.getBoolean(Object array,
int index)
Returns the value of the indexed component in the specified
array object, as a
boolean . |
static byte |
Array.getByte(Object array,
int index)
Returns the value of the indexed component in the specified
array object, as a
byte . |
static char |
Array.getChar(Object array,
int index)
Returns the value of the indexed component in the specified
array object, as a
char . |
static double |
Array.getDouble(Object array,
int index)
Returns the value of the indexed component in the specified
array object, as a
double . |
static float |
Array.getFloat(Object array,
int index)
Returns the value of the indexed component in the specified
array object, as a
float . |
static int |
Array.getInt(Object array,
int index)
Returns the value of the indexed component in the specified
array object, as an
int . |
static long |
Array.getLong(Object array,
int index)
Returns the value of the indexed component in the specified
array object, as a
long . |
static short |
Array.getShort(Object array,
int index)
Returns the value of the indexed component in the specified
array object, as a
short . |
static void |
Array.set(Object array,
int index,
Object value)
Sets the value of the indexed component of the specified array
object to the specified new value.
|
static void |
Array.setBoolean(Object array,
int index,
boolean z)
Sets the value of the indexed component of the specified array
object to the specified
boolean value. |
static void |
Array.setByte(Object array,
int index,
byte b)
Sets the value of the indexed component of the specified array
object to the specified
byte value. |
static void |
Array.setChar(Object array,
int index,
char c)
Sets the value of the indexed component of the specified array
object to the specified
char value. |
static void |
Array.setDouble(Object array,
int index,
double d)
Sets the value of the indexed component of the specified array
object to the specified
double value. |
static void |
Array.setFloat(Object array,
int index,
float f)
Sets the value of the indexed component of the specified array
object to the specified
float value. |
static void |
Array.setInt(Object array,
int index,
int i)
Sets the value of the indexed component of the specified array
object to the specified
int value. |
static void |
Array.setLong(Object array,
int index,
long l)
Sets the value of the indexed component of the specified array
object to the specified
long value. |
static void |
Array.setShort(Object array,
int index,
short s)
Sets the value of the indexed component of the specified array
object to the specified
short value. |
Modifier and Type | Method and Description |
---|---|
int |
RawByteReader.get(int offset,
byte[] values,
int start,
int count)
Fills
values from index start with
elements from this instance, where the nth element is at
the address base address + (offset + n) ×
stride × element size in bytes. |
int |
RawDoubleReader.get(int offset,
double[] values,
int start,
int count)
Fills
values from index start with
elements from this instance, where the nth element is at
the address base address + (offset + n) ×
stride × element size in bytes. |
int |
RawFloatReader.get(int offset,
float[] values,
int start,
int count)
Fills
values from index start with
elements from this instance, where the nth element is at
the address base address + (offset + n) ×
stride × element size in bytes. |
int |
RawIntReader.get(int offset,
int[] values,
int start,
int count)
Fills
values from index start with
elements from this instance, where the nth element is at
the address base address + (offset + n) ×
stride × element size in bytes. |
int |
RawLongReader.get(int offset,
long[] values,
int start,
int count)
Fills
values from index start with
elements from this instance, where the nth element is at
the address base address + (offset + n) ×
stride × element size in bytes. |
int |
RawShortReader.get(int offset,
short[] values,
int start,
int count)
Fills
values from index start with
elements from this instance, where the nth element is at
the address base address + (offset + n) ×
stride × element size in bytes. |
int |
RawByteWriter.set(int offset,
byte[] values,
int start,
int count)
Copies
values to the memory region, where
offset is first byte in the memory region to write and
start is the first index in values from
which to read. |
int |
RawDoubleWriter.set(int offset,
double[] values,
int start,
int count)
Copies
values to the memory region, where
offset is first double in the memory region to write and
start is the first index in values from
which to read. |
int |
RawFloatWriter.set(int offset,
float[] values,
int start,
int count)
Copies
values to the memory region, where
offset is first float in the memory region to write and
start is the first index in values from
which to read. |
int |
RawIntWriter.set(int offset,
int[] values,
int start,
int count)
Copies
values to the memory region, where
offset is first int in the memory region to write and
start is the first index in values from
which to read. |
int |
RawLongWriter.set(int offset,
long[] values,
int start,
int count)
Copies
values to the memory region, where
offset is first long in the memory region to write and
start is the first index in values from
which to read. |
int |
RawShortWriter.set(int offset,
short[] values,
int start,
int count)
Copies
values to the memory region, where
offset is first short in the memory region to write and
start is the first index in values from
which to read. |
Modifier and Type | Method and Description |
---|---|
MidiEvent |
Track.get(int index)
Obtains the event at the specified index.
|
aicas GmbH, Karlsruhe, Germany —www.aicas.com
Copyright © 2001-2019 aicas GmbH. All Rights Reserved.