BinaryRecordInput, TypedBytesRecordInput@Deprecated
@Public
@Stable
public interface RecordInput
| Modifier and Type | Method | Description |
|---|---|---|
void |
endMap(java.lang.String tag) |
Deprecated.
Check the mark for end of the serialized map.
|
void |
endRecord(java.lang.String tag) |
Deprecated.
Check the mark for end of the serialized record.
|
void |
endVector(java.lang.String tag) |
Deprecated.
Check the mark for end of the serialized vector.
|
boolean |
readBool(java.lang.String tag) |
Deprecated.
Read a boolean from serialized record.
|
Buffer |
readBuffer(java.lang.String tag) |
Deprecated.
Read byte array from serialized record.
|
byte |
readByte(java.lang.String tag) |
Deprecated.
Read a byte from serialized record.
|
double |
readDouble(java.lang.String tag) |
Deprecated.
Read a double-precision number from serialized record.
|
float |
readFloat(java.lang.String tag) |
Deprecated.
Read a single-precision float from serialized record.
|
int |
readInt(java.lang.String tag) |
Deprecated.
Read an integer from serialized record.
|
long |
readLong(java.lang.String tag) |
Deprecated.
Read a long integer from serialized record.
|
java.lang.String |
readString(java.lang.String tag) |
Deprecated.
Read a UTF-8 encoded string from serialized record.
|
Index |
startMap(java.lang.String tag) |
Deprecated.
Check the mark for start of the serialized map.
|
void |
startRecord(java.lang.String tag) |
Deprecated.
Check the mark for start of the serialized record.
|
Index |
startVector(java.lang.String tag) |
Deprecated.
Check the mark for start of the serialized vector.
|
byte readByte(java.lang.String tag)
throws java.io.IOException
tag - Used by tagged serialization formats (such as XML)java.io.IOExceptionboolean readBool(java.lang.String tag)
throws java.io.IOException
tag - Used by tagged serialization formats (such as XML)java.io.IOExceptionint readInt(java.lang.String tag)
throws java.io.IOException
tag - Used by tagged serialization formats (such as XML)java.io.IOExceptionlong readLong(java.lang.String tag)
throws java.io.IOException
tag - Used by tagged serialization formats (such as XML)java.io.IOExceptionfloat readFloat(java.lang.String tag)
throws java.io.IOException
tag - Used by tagged serialization formats (such as XML)java.io.IOExceptiondouble readDouble(java.lang.String tag)
throws java.io.IOException
tag - Used by tagged serialization formats (such as XML)java.io.IOExceptionjava.lang.String readString(java.lang.String tag)
throws java.io.IOException
tag - Used by tagged serialization formats (such as XML)java.io.IOExceptionBuffer readBuffer(java.lang.String tag) throws java.io.IOException
tag - Used by tagged serialization formats (such as XML)java.io.IOExceptionvoid startRecord(java.lang.String tag)
throws java.io.IOException
tag - Used by tagged serialization formats (such as XML)java.io.IOExceptionvoid endRecord(java.lang.String tag)
throws java.io.IOException
tag - Used by tagged serialization formats (such as XML)java.io.IOExceptionIndex startVector(java.lang.String tag) throws java.io.IOException
tag - Used by tagged serialization formats (such as XML)java.io.IOExceptionvoid endVector(java.lang.String tag)
throws java.io.IOException
tag - Used by tagged serialization formats (such as XML)java.io.IOExceptionIndex startMap(java.lang.String tag) throws java.io.IOException
tag - Used by tagged serialization formats (such as XML)java.io.IOExceptionvoid endMap(java.lang.String tag)
throws java.io.IOException
tag - Used by tagged serialization formats (such as XML)java.io.IOExceptionCopyright © 2008–2025 Apache Software Foundation. All rights reserved.