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