public final class Input
extends java.lang.Object
Constructor and Description |
---|
Input() |
Modifier and Type | Method and Description |
---|---|
static java.lang.Boolean |
readBool(java.io.DataInput in)
Reads a Boolean object from the given DataInput.
|
static java.lang.Boolean |
readBool(java.io.DataInput in,
SidebandHandlerI sidebandHandler)
Reads a Boolean object from the given DataInput, disregarding SIDEBAND_MARKER but possibly calling back the passed SidebandHandlerI.
|
static java.lang.Byte |
readByte(java.io.DataInput in)
Reads a Byte object from the given DataInput.
|
static java.lang.Byte |
readByte(java.io.DataInput in,
SidebandHandlerI sidebandHandler)
Reads a Byte object from the given DataInput, disregarding SIDEBAND_MARKER but possibly calling back the passed SidebandHandlerI.
|
static int |
readByteArray(byte[] b,
java.io.DataInput in) |
static int |
readByteArray(byte[] b,
java.io.DataInput in,
SidebandHandlerI sidebandHandler) |
static int |
readByteArray(byte[] b,
int off,
int len,
java.io.DataInput in) |
static int |
readByteArray(byte[] b,
int off,
int len,
java.io.DataInput in,
SidebandHandlerI sidebandHandler) |
static java.util.Date |
readDate(java.io.DataInput in)
Reads a Date object from the given DataInput.
|
static java.util.Date |
readDate(java.io.DataInput in,
SidebandHandlerI sidebandHandler)
Reads a Date object from the given DataInput, disregarding SIDEBAND_MARKER but possibly calling back the passed SidebandHandlerI.
|
static java.math.BigDecimal |
readDecimal(java.io.DataInput in)
Reads a BigDecimal object from the given DataInput.
|
static java.math.BigDecimal |
readDecimal(java.io.DataInput in,
SidebandHandlerI sidebandHandler)
Reads a BigDecimal object from the given DataInput, disregarding SIDEBAND_MARKER but possibly calling back the passed SidebandHandlerI.
|
static java.lang.Double |
readDouble(java.io.DataInput in)
Reads a Double object from the given DataInput.
|
static java.lang.Double |
readDouble(java.io.DataInput in,
SidebandHandlerI sidebandHandler)
Reads a Double object from the given DataInput, disregarding SIDEBAND_MARKER but possibly calling back the passed SidebandHandlerI.
|
static java.lang.Float |
readFloat(java.io.DataInput in)
Reads a Float object from the given DataInput.
|
static java.lang.Float |
readFloat(java.io.DataInput in,
SidebandHandlerI sidebandHandler)
Reads a Float object from the given DataInput, disregarding SIDEBAND_MARKER but possibly calling back the passed SidebandHandlerI.
|
static java.lang.Integer |
readInt(java.io.DataInput in)
Reads an Integer object from the given DataInput.
|
static java.lang.Integer |
readInt(java.io.DataInput in,
SidebandHandlerI sidebandHandler)
Reads an Integer object from the given DataInput, disregarding SIDEBAND_MARKER but possibly calling back the passed SidebandHandlerI.
|
static java.lang.Long |
readLong(java.io.DataInput in)
Reads a Long object from the given DataInput.
|
static java.lang.Long |
readLong(java.io.DataInput in,
SidebandHandlerI sidebandHandler)
Reads a Long object from the given DataInput, disregarding SIDEBAND_MARKER but possibly calling back the passed SidebandHandlerI.
|
static java.lang.Short |
readShort(java.io.DataInput in)
Reads a Short object from the given DataInput.
|
static java.lang.Short |
readShort(java.io.DataInput in,
SidebandHandlerI sidebandHandler)
Reads a Short object from the given DataInput, disregarding SIDEBAND_MARKER but possibly calling back the passed SidebandHandlerI.
|
static java.lang.String |
readUTF(java.io.DataInput in)
Reads a UTF8 encoded String from the given DataInput.
|
static java.lang.String |
readUTF(java.io.DataInput in,
SidebandHandlerI sidebandHandler)
Reads a UTF8 encoded String from the given DataInput, disregarding SIDEBAND_MARKER but possibly calling back the passed SidebandHandlerI.
|
public static java.lang.String readUTF(java.io.DataInput in) throws java.io.IOException
java.io.IOException
public static java.lang.String readUTF(java.io.DataInput in, SidebandHandlerI sidebandHandler) throws java.io.IOException
java.io.IOException
public static java.math.BigDecimal readDecimal(java.io.DataInput in) throws java.io.IOException
java.io.IOException
public static java.math.BigDecimal readDecimal(java.io.DataInput in, SidebandHandlerI sidebandHandler) throws java.io.IOException
java.io.IOException
public static java.lang.Long readLong(java.io.DataInput in) throws java.io.IOException
java.io.IOException
public static java.lang.Long readLong(java.io.DataInput in, SidebandHandlerI sidebandHandler) throws java.io.IOException
java.io.IOException
public static java.lang.Double readDouble(java.io.DataInput in) throws java.io.IOException
java.io.IOException
public static java.lang.Double readDouble(java.io.DataInput in, SidebandHandlerI sidebandHandler) throws java.io.IOException
java.io.IOException
public static java.lang.Integer readInt(java.io.DataInput in) throws java.io.IOException
java.io.IOException
public static java.lang.Integer readInt(java.io.DataInput in, SidebandHandlerI sidebandHandler) throws java.io.IOException
java.io.IOException
public static java.lang.Short readShort(java.io.DataInput in) throws java.io.IOException
java.io.IOException
public static java.lang.Short readShort(java.io.DataInput in, SidebandHandlerI sidebandHandler) throws java.io.IOException
java.io.IOException
public static java.lang.Byte readByte(java.io.DataInput in) throws java.io.IOException
java.io.IOException
public static java.lang.Byte readByte(java.io.DataInput in, SidebandHandlerI sidebandHandler) throws java.io.IOException
java.io.IOException
public static java.lang.Float readFloat(java.io.DataInput in) throws java.io.IOException
java.io.IOException
public static java.lang.Float readFloat(java.io.DataInput in, SidebandHandlerI sidebandHandler) throws java.io.IOException
java.io.IOException
public static java.lang.Boolean readBool(java.io.DataInput in) throws java.io.IOException
java.io.IOException
public static java.lang.Boolean readBool(java.io.DataInput in, SidebandHandlerI sidebandHandler) throws java.io.IOException
java.io.IOException
public static java.util.Date readDate(java.io.DataInput in) throws java.io.IOException
java.io.IOException
public static java.util.Date readDate(java.io.DataInput in, SidebandHandlerI sidebandHandler) throws java.io.IOException
java.io.IOException
public static int readByteArray(byte[] b, java.io.DataInput in) throws java.io.IOException
java.io.IOException
public static int readByteArray(byte[] b, java.io.DataInput in, SidebandHandlerI sidebandHandler) throws java.io.IOException
java.io.IOException
public static int readByteArray(byte[] b, int off, int len, java.io.DataInput in) throws java.io.IOException
java.io.IOException
public static int readByteArray(byte[] b, int off, int len, java.io.DataInput in, SidebandHandlerI sidebandHandler) throws java.io.IOException
java.io.IOException
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.