All Methods Static Methods Concrete Methods
| Modifier and Type |
Method and Description |
static void |
adjustDataByteSizeBlock(IoBuffer buffer,
long sizeMarkerStart) |
static BinarySerialiser.HeaderInfo |
checkHeaderInfo(IoBuffer readBuffer) |
static int[] |
getArrayDimensions(IoBuffer readBuffer) |
static boolean |
getBoolean(IoBuffer readBuffer) |
static boolean[] |
getBooleanArray(IoBuffer readBuffer) |
static int |
getBufferIncrements() |
static byte |
getByte(IoBuffer readBuffer) |
static byte[] |
getByteArray(IoBuffer readBuffer) |
static char[] |
getCharArray(IoBuffer readBuffer) |
static <E> Collection<E> |
getCollection(IoBuffer readBuffer,
Collection<E> collection) |
static double |
getDouble(IoBuffer readBuffer) |
static double[] |
getDoubleArray(IoBuffer readBuffer) |
static double[] |
getDoubleArray(IoBuffer readBuffer,
DataType dataType) |
static Enum<?> |
getEnum(IoBuffer readBuffer,
Enum<?> enumeration) |
static String |
getEnumTypeList(IoBuffer readBuffer) |
static FieldHeader |
getFieldHeader(IoBuffer readBuffer) |
static float |
getFloat(IoBuffer readBuffer) |
static float[] |
getFloatArray(IoBuffer readBuffer) |
protected static Object[] |
getGenericArrayAsPrimitive(IoBuffer readBuffer,
DataType dataType) |
static int[] |
getIntArray(IoBuffer readBuffer) |
static int |
getInteger(IoBuffer readBuffer) |
static <E> List<E> |
getList(IoBuffer readBuffer,
List<E> collection) |
static long |
getLong(IoBuffer readBuffer) |
static long[] |
getLongArray(IoBuffer readBuffer) |
static <K,V> Map<K,V> |
getMap(IoBuffer readBuffer,
Map<K,V> map) |
static <E> Queue<E> |
getQueue(IoBuffer readBuffer,
Queue<E> collection) |
static <E> Set<E> |
getSet(IoBuffer readBuffer,
Set<E> collection) |
static short |
getShort(IoBuffer readBuffer) |
static short[] |
getShortArray(IoBuffer readBuffer) |
static String |
getString(IoBuffer readBuffer) |
static String[] |
getStringArray(IoBuffer readBuffer) |
static FieldHeader |
parseIoStream(IoBuffer buffer) |
protected static void |
parseIoStream(IoBuffer buffer,
FieldHeader fieldRoot,
int recursionDepth) |
static void |
put(IoBuffer buffer,
String fieldName,
boolean value) |
static void |
put(IoBuffer buffer,
String fieldName,
boolean[] arrayValue) |
static void |
put(IoBuffer buffer,
String fieldName,
boolean[] arrayValue,
int[] dims) |
static void |
put(IoBuffer buffer,
String fieldName,
byte value) |
static void |
put(IoBuffer buffer,
String fieldName,
byte[] arrayValue) |
static void |
put(IoBuffer buffer,
String fieldName,
byte[] arrayValue,
int[] dims) |
static <E> void |
put(IoBuffer buffer,
String fieldName,
Collection<E> collection) |
static void |
put(IoBuffer buffer,
String fieldName,
double value) |
static void |
put(IoBuffer buffer,
String fieldName,
double[] arrayValue) |
static void |
put(IoBuffer buffer,
String fieldName,
double[] arrayValue,
int[] dims) |
static void |
put(IoBuffer buffer,
String fieldName,
Enum<?> enumeration) |
static void |
put(IoBuffer buffer,
String fieldName,
float value) |
static void |
put(IoBuffer buffer,
String fieldName,
float[] arrayValue) |
static void |
put(IoBuffer buffer,
String fieldName,
float[] arrayValue,
int[] dims) |
static void |
put(IoBuffer buffer,
String fieldName,
int value) |
static void |
put(IoBuffer buffer,
String fieldName,
int[] arrayValue) |
static void |
put(IoBuffer buffer,
String fieldName,
int[] arrayValue,
int[] dims) |
static void |
put(IoBuffer buffer,
String fieldName,
long value) |
static void |
put(IoBuffer buffer,
String fieldName,
long[] arrayValue) |
static void |
put(IoBuffer buffer,
String fieldName,
long[] arrayValue,
int[] dims) |
static <K,V> void |
put(IoBuffer buffer,
String fieldName,
Map<K,V> map) |
static void |
put(IoBuffer buffer,
String fieldName,
short value) |
static void |
put(IoBuffer buffer,
String fieldName,
short[] arrayValue) |
static void |
put(IoBuffer buffer,
String fieldName,
short[] arrayValue,
int[] dims) |
static void |
put(IoBuffer buffer,
String fieldName,
String value) |
static void |
put(IoBuffer buffer,
String fieldName,
String[] arrayValue) |
static void |
put(IoBuffer buffer,
String fieldName,
String[] arrayValue,
int[] dims) |
static long |
putArrayHeader(IoBuffer buffer,
String fieldName,
DataType dataType,
int[] dims,
int nElements) |
static void |
putEndMarker(IoBuffer buffer,
String markerName) |
static void |
putFieldHeader(IoBuffer buffer,
String fieldName,
DataType dataType) |
static void |
putFieldHeader(IoBuffer buffer,
String fieldName,
DataType dataType,
int additionalSize) |
static void |
putGenericArrayAsPrimitive(IoBuffer buffer,
DataType dataType,
Object[] data,
int nToCopy) |
static void |
putHeaderInfo(IoBuffer buffer)
Adds header and version information
|
static void |
putStartMarker(IoBuffer buffer,
String markerName) |
static void |
setBufferIncrements(int bufferIncrements) |
protected static void |
swallowRest(IoBuffer readBuffer,
FieldHeader fieldHeader) |