Package com.indeed.util.mmap
Interface HeapDataAccess
-
public interface HeapDataAccess
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description chargetChar(byte[] b, int off)doublegetDouble(byte[] b, int off)floatgetFloat(byte[] b, int off)intgetInt(byte[] b, int off)longgetLong(byte[] b, int off)shortgetShort(byte[] b, int off)voidputChar(byte[] b, int off, char val)voidputDouble(byte[] b, int off, double val)voidputFloat(byte[] b, int off, float val)voidputInt(byte[] b, int off, int val)voidputLong(byte[] b, int off, long val)voidputShort(byte[] b, int off, short val)
-
-
-
Method Detail
-
getChar
char getChar(byte[] b, int off)
-
getShort
short getShort(byte[] b, int off)
-
getInt
int getInt(byte[] b, int off)
-
getFloat
float getFloat(byte[] b, int off)
-
getLong
long getLong(byte[] b, int off)
-
getDouble
double getDouble(byte[] b, int off)
-
putChar
void putChar(byte[] b, int off, char val)
-
putShort
void putShort(byte[] b, int off, short val)
-
putInt
void putInt(byte[] b, int off, int val)
-
putFloat
void putFloat(byte[] b, int off, float val)
-
putLong
void putLong(byte[] b, int off, long val)
-
putDouble
void putDouble(byte[] b, int off, double val)
-
-