public class BlinkInput
extends java.lang.Object
BlinkOutput| Modifier and Type | Method and Description |
|---|---|
static java.math.BigDecimal |
readBigDecimal(java.io.InputStream in)
Read a big decimal number.
|
static java.math.BigDecimal |
readBigDecimalNull(java.io.InputStream in)
Read a nullable big decimal number.
|
static java.math.BigInteger |
readBigInt(java.io.InputStream in)
Read a signed big integer.
|
static java.math.BigInteger |
readBigIntNull(java.io.InputStream in)
Read a nullable signed big integer.
|
static byte[] |
readBinary(java.io.InputStream in)
Read a binary value.
|
static byte[] |
readBinary(java.io.InputStream in,
int maxLength)
Read a binary value.
|
static byte[] |
readBinaryNull(java.io.InputStream in)
Read a nullable binary value.
|
static byte[] |
readBinaryNull(java.io.InputStream in,
int maxLength)
Read a nullable binary value.
|
static boolean |
readBoolean(java.io.InputStream in)
Read a boolean value.
|
static java.lang.Boolean |
readBooleanNull(java.io.InputStream in)
Read a nullable boolean value.
|
static java.math.BigDecimal |
readDecimal(java.io.InputStream in)
Read a decimal number.
|
static java.math.BigDecimal |
readDecimalNull(java.io.InputStream in)
Read a nullable decimal number.
|
static float |
readFloat32(java.io.InputStream in)
Read a 32-bit floating point number.
|
static java.lang.Float |
readFloat32Null(java.io.InputStream in)
Read a nullable 32-bit floating point number.
|
static double |
readFloat64(java.io.InputStream in)
Read a 64-bit floating point number.
|
static java.lang.Double |
readFloat64Null(java.io.InputStream in)
Read a nullable 64-bit floating point number.
|
static short |
readInt16(java.io.InputStream in)
Read a signed 16-bit integer.
|
static java.lang.Short |
readInt16Null(java.io.InputStream in)
Read a nullable signed 16-bit integer.
|
static int |
readInt32(java.io.InputStream in)
Read a signed 32-bit integer.
|
static java.lang.Integer |
readInt32Null(java.io.InputStream in)
Read a nullable signed 32-bit integer.
|
static long |
readInt64(java.io.InputStream in)
Read a signed 64-bit integer.
|
static java.lang.Long |
readInt64Null(java.io.InputStream in)
Read a nullable signed 64-bit integer.
|
static byte |
readInt8(java.io.InputStream in)
Read a signed 8-bit integer.
|
static java.lang.Byte |
readInt8Null(java.io.InputStream in)
Read a nullable signed 8-bit integer.
|
static java.math.BigInteger |
readSignedBigVLC(java.io.InputStream in)
Read a nullable unsigned big variable-length code value.
|
static java.math.BigInteger |
readSignedBigVLCNull(java.io.InputStream in)
Read a nullable unsigned big variable-length code value.
|
static long |
readSignedVLC(java.io.InputStream in)
Read a signed variable-length code value.
|
static java.lang.Long |
readSignedVLCNull(java.io.InputStream in)
Read a nullable signed variable-length code value.
|
static java.lang.String |
readStringUTF8(java.io.InputStream in)
Read a unicode string.
|
static java.lang.String |
readStringUTF8(java.io.InputStream in,
int maxLength)
Read a unicode string.
|
static java.lang.String |
readStringUTF8Null(java.io.InputStream in)
Read a nullable unicode string.
|
static java.lang.String |
readStringUTF8Null(java.io.InputStream in,
int maxLength)
Read a nullable unicode string.
|
static short |
readUInt16(java.io.InputStream in)
Read an unsigned 16-bit integer.
|
static java.lang.Short |
readUInt16Null(java.io.InputStream in)
Read a nullable unsigned 16-bit integer.
|
static int |
readUInt32(java.io.InputStream in)
Read an unsigned 32-bit integer.
|
static java.lang.Integer |
readUInt32Null(java.io.InputStream in)
Read a nullable unsigned 32-bit integer.
|
static long |
readUInt64(java.io.InputStream in)
Read an unsigned 64-bit integer.
|
static java.lang.Long |
readUInt64Null(java.io.InputStream in)
Read a nullable unsigned 64-bit integer.
|
static byte |
readUInt8(java.io.InputStream in)
Read an unsigned 8-bit integer.
|
static java.lang.Byte |
readUInt8Null(java.io.InputStream in)
Read a nullable unsigned 8-bit integer.
|
static long |
readUnsignedVLC(java.io.InputStream in)
Read a signed variable-length code value.
|
static java.lang.Long |
readUnsignedVLCNull(java.io.InputStream in)
Read a nullable unsigned variable-length code value.
|
static void |
skipBigDecimal(java.io.InputStream in)
Skip a big decimal number.
|
static void |
skipBigDecimalNull(java.io.InputStream in)
Skip a nullable big decimal number.
|
static void |
skipBigInt(java.io.InputStream in)
Skip a signed big integer.
|
static void |
skipBigIntNull(java.io.InputStream in)
Skip a nullable signed big integer.
|
static void |
skipBinary(java.io.InputStream in)
Skip a binary value.
|
static void |
skipBinaryNull(java.io.InputStream in)
Skip a nullable binary value.
|
static void |
skipBoolean(java.io.InputStream in)
Skip a boolean value.
|
static void |
skipBooleanNull(java.io.InputStream in)
Skip a nullable boolean value.
|
static void |
skipDecimal(java.io.InputStream in)
Skip a decimal number.
|
static void |
skipDecimalNull(java.io.InputStream in)
Skip a nullable decimal number.
|
static void |
skipFloat32(java.io.InputStream in)
Skip a 32-bit floating point number.
|
static void |
skipFloat32Null(java.io.InputStream in)
Skip a nullable 32-bit floating point number.
|
static void |
skipFloat64(java.io.InputStream in)
Skip a 64-bit floating point number.
|
static void |
skipFloat64Null(java.io.InputStream in)
Skip a nullable 64-bit floating point number.
|
static void |
skipInt16(java.io.InputStream in)
Skip a signed 16-bit integer.
|
static void |
skipInt16Null(java.io.InputStream in)
Skip a nullable signed 16-bit integer.
|
static void |
skipInt32(java.io.InputStream in)
Skip a signed 32-bit integer.
|
static void |
skipInt32Null(java.io.InputStream in)
Skip a nullable signed 32-bit integer.
|
static void |
skipInt64(java.io.InputStream in)
Skip a signed 64-bit integer.
|
static void |
skipInt64Null(java.io.InputStream in)
Skip a nullable signed 64-bit integer.
|
static void |
skipInt8(java.io.InputStream in)
Skip a signed 8-bit integer.
|
static void |
skipInt8Null(java.io.InputStream in)
Skip a nullable signed 8-bit integer.
|
static void |
skipStringUTF8(java.io.InputStream in)
Skip a unicode string.
|
static void |
skipStringUTF8Null(java.io.InputStream in)
Skip a nullable unicode string.
|
static void |
skipUInt16(java.io.InputStream in)
Skip an unsigned 16-bit integer.
|
static void |
skipUInt16Null(java.io.InputStream in)
Skip a nullable unsigned 16-bit integer.
|
static void |
skipUInt32(java.io.InputStream in)
Skip an unsigned 32-bit integer.
|
static void |
skipUInt32Null(java.io.InputStream in)
Skip a nullable unsigned 32-bit integer.
|
static void |
skipUInt64(java.io.InputStream in)
Skip an unsigned 64-bit integer.
|
static void |
skipUInt64Null(java.io.InputStream in)
Skip a nullable unsigned 64-bit integer.
|
static void |
skipUInt8(java.io.InputStream in)
Skip an unsigned 8-bit integer.
|
static void |
skipUInt8Null(java.io.InputStream in)
Skip a nullable unsigned 8-bit integer.
|
static boolean |
skipVLC(java.io.InputStream in)
Skip a (nullable) variable-length code value.
|
public static byte readInt8(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static short readInt16(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static int readInt32(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static long readInt64(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static byte readUInt8(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static short readUInt16(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static int readUInt32(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static long readUInt64(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static java.lang.Byte readInt8Null(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static java.lang.Short readInt16Null(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static java.lang.Integer readInt32Null(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static java.lang.Long readInt64Null(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static java.lang.Byte readUInt8Null(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static java.lang.Short readUInt16Null(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static java.lang.Integer readUInt32Null(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static java.lang.Long readUInt64Null(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static java.math.BigInteger readBigInt(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static java.math.BigInteger readBigIntNull(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static float readFloat32(java.io.InputStream in)
throws java.io.IOException
Since the Blink protocol does not support 32-bit floating point numbers, the value is read as a 64-bit floating point number.
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.readFloat64(InputStream)public static java.lang.Float readFloat32Null(java.io.InputStream in)
throws java.io.IOException
Since the Blink protocol does not support 32-bit floating point numbers, the value is read as a 64-bit floating point number.
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.readFloat64(InputStream)public static double readFloat64(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static java.lang.Double readFloat64Null(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static java.math.BigDecimal readDecimal(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static java.math.BigDecimal readDecimalNull(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static java.math.BigDecimal readBigDecimal(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static java.math.BigDecimal readBigDecimalNull(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static boolean readBoolean(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static java.lang.Boolean readBooleanNull(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static java.lang.String readStringUTF8(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static java.lang.String readStringUTF8Null(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static java.lang.String readStringUTF8(java.io.InputStream in,
int maxLength)
throws java.io.IOException
in - the input stream to read from, not null.maxLength - the maximum string length (bytes) that is allowed, or -1 for no limit.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static java.lang.String readStringUTF8Null(java.io.InputStream in,
int maxLength)
throws java.io.IOException
in - the input stream to read from, not null.maxLength - the maximum string length (bytes) that is allowed, or -1 for no limit.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static byte[] readBinary(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static byte[] readBinaryNull(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static byte[] readBinary(java.io.InputStream in,
int maxLength)
throws java.io.IOException
in - the input stream to read from, not null.maxLength - the maximum binary length (bytes) that is allowed, or -1 for no limit.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static byte[] readBinaryNull(java.io.InputStream in,
int maxLength)
throws java.io.IOException
in - the input stream to read from, not null.maxLength - the maximum binary length (bytes) that is allowed, or -1 for no limit.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static java.lang.Long readSignedVLCNull(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static long readSignedVLC(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static java.math.BigInteger readSignedBigVLC(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static java.math.BigInteger readSignedBigVLCNull(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static java.lang.Long readUnsignedVLCNull(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static long readUnsignedVLC(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static boolean skipVLC(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipInt8(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipInt16(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipInt32(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipInt64(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipUInt8(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipUInt16(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipUInt32(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipUInt64(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipInt8Null(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipInt16Null(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipInt32Null(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipInt64Null(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipUInt8Null(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipUInt16Null(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipUInt32Null(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipUInt64Null(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipBigInt(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipBigIntNull(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipFloat32(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.readFloat64(InputStream)public static void skipFloat32Null(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.readFloat64(InputStream)public static void skipFloat64(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipFloat64Null(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipDecimal(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipDecimalNull(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipBigDecimal(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipBigDecimalNull(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipBoolean(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipBooleanNull(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipStringUTF8(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipStringUTF8Null(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipBinary(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.public static void skipBinaryNull(java.io.InputStream in)
throws java.io.IOException
in - the input stream to read from, not null.java.io.IOException - if the input stream throws an exception.com.cinnober.msgcodec.DecodeException - if the value could not be parsed.