public class LiteralBinaryInterpreter extends java.lang.Object implements BinaryInterpreter
| Modifier and Type | Field and Description |
|---|---|
static LiteralBinaryInterpreter |
INSTANCE
The only instance of this interpreter.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getPackedLength(int nBytes)
Returns nBytes because we are not doing any conversion.
|
void |
interpret(byte[] data,
byte[] b,
int offset)
Copies the input to the output.
|
byte[] |
uninterpret(byte[] rawData,
int offset,
int length)
Copies the data out of the byte array.
|
public static final LiteralBinaryInterpreter INSTANCE
public void interpret(byte[] data,
byte[] b,
int offset)
interpret in interface BinaryInterpreterdata - The data to be interpreted.b - The byte array to write the interpreted data to.offset - The starting position in b.public byte[] uninterpret(byte[] rawData,
int offset,
int length)
uninterpret in interface BinaryInterpreterrawData - The interpreted data.offset - The index in rawData to start uninterpreting at.length - The number of uninterpreted bytes to uninterpret. This number may be
different from the number of raw bytes that are uninterpreted.public int getPackedLength(int nBytes)
getPackedLength in interface BinaryInterpreter