public interface RuntimeTable<T>
TypeReference.isRuntimeTable()
Modifier and Type | Method and Description |
---|---|
T |
get(int index)
Get a value from the table.
|
T[] |
getBacking()
Only called at boot image write time.
|
int |
length()
Get the table length.
|
void |
set(int index,
T value)
Set a value to the table.
|
T get(int index)
index
- location to readvoid set(int index, T value)
index
- location to writevalue
- to writeint length()
T[] getBacking()