public interface HeapDataAccess
| Modifier and Type | Method and Description |
|---|---|
char |
getChar(byte[] b,
int off) |
double |
getDouble(byte[] b,
int off) |
float |
getFloat(byte[] b,
int off) |
int |
getInt(byte[] b,
int off) |
long |
getLong(byte[] b,
int off) |
short |
getShort(byte[] b,
int off) |
void |
putChar(byte[] b,
int off,
char val) |
void |
putDouble(byte[] b,
int off,
double val) |
void |
putFloat(byte[] b,
int off,
float val) |
void |
putInt(byte[] b,
int off,
int val) |
void |
putLong(byte[] b,
int off,
long val) |
void |
putShort(byte[] b,
int off,
short val) |
char getChar(byte[] b,
int off)
short getShort(byte[] b,
int off)
int getInt(byte[] b,
int off)
float getFloat(byte[] b,
int off)
long getLong(byte[] b,
int off)
double getDouble(byte[] b,
int off)
void putChar(byte[] b,
int off,
char val)
void putShort(byte[] b,
int off,
short val)
void putInt(byte[] b,
int off,
int val)
void putFloat(byte[] b,
int off,
float val)
void putLong(byte[] b,
int off,
long val)
void putDouble(byte[] b,
int off,
double val)