|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface RecordInput
Interface that all the Deserializers have to implement.
Method Summary | |
---|---|
void |
endMap(java.lang.String tag)
Check the mark for end of the serialized map. |
void |
endRecord(java.lang.String tag)
Check the mark for end of the serialized record. |
void |
endVector(java.lang.String tag)
Check the mark for end of the serialized vector. |
boolean |
readBool(java.lang.String tag)
Read a boolean from serialized record. |
Buffer |
readBuffer(java.lang.String tag)
Read byte array from serialized record. |
byte |
readByte(java.lang.String tag)
Read a byte from serialized record. |
double |
readDouble(java.lang.String tag)
Read a double-precision number from serialized record. |
float |
readFloat(java.lang.String tag)
Read a single-precision float from serialized record. |
int |
readInt(java.lang.String tag)
Read an integer from serialized record. |
long |
readLong(java.lang.String tag)
Read a long integer from serialized record. |
java.lang.String |
readString(java.lang.String tag)
Read a UTF-8 encoded string from serialized record. |
Index |
startMap(java.lang.String tag)
Check the mark for start of the serialized map. |
void |
startRecord(java.lang.String tag)
Check the mark for start of the serialized record. |
Index |
startVector(java.lang.String tag)
Check the mark for start of the serialized vector. |
Method Detail |
---|
byte readByte(java.lang.String tag) throws java.io.IOException
tag
- Used by tagged serialization formats (such as XML)
java.io.IOException
boolean readBool(java.lang.String tag) throws java.io.IOException
tag
- Used by tagged serialization formats (such as XML)
java.io.IOException
int readInt(java.lang.String tag) throws java.io.IOException
tag
- Used by tagged serialization formats (such as XML)
java.io.IOException
long readLong(java.lang.String tag) throws java.io.IOException
tag
- Used by tagged serialization formats (such as XML)
java.io.IOException
float readFloat(java.lang.String tag) throws java.io.IOException
tag
- Used by tagged serialization formats (such as XML)
java.io.IOException
double readDouble(java.lang.String tag) throws java.io.IOException
tag
- Used by tagged serialization formats (such as XML)
java.io.IOException
java.lang.String readString(java.lang.String tag) throws java.io.IOException
tag
- Used by tagged serialization formats (such as XML)
java.io.IOException
Buffer readBuffer(java.lang.String tag) throws java.io.IOException
tag
- Used by tagged serialization formats (such as XML)
java.io.IOException
void startRecord(java.lang.String tag) throws java.io.IOException
tag
- Used by tagged serialization formats (such as XML)
java.io.IOException
void endRecord(java.lang.String tag) throws java.io.IOException
tag
- Used by tagged serialization formats (such as XML)
java.io.IOException
Index startVector(java.lang.String tag) throws java.io.IOException
tag
- Used by tagged serialization formats (such as XML)
java.io.IOException
void endVector(java.lang.String tag) throws java.io.IOException
tag
- Used by tagged serialization formats (such as XML)
java.io.IOException
Index startMap(java.lang.String tag) throws java.io.IOException
tag
- Used by tagged serialization formats (such as XML)
java.io.IOException
void endMap(java.lang.String tag) throws java.io.IOException
tag
- Used by tagged serialization formats (such as XML)
java.io.IOException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |