Package com.fasterxml.jackson.jr.ob.impl
Class SimpleValueReader
- java.lang.Object
-
- com.fasterxml.jackson.jr.ob.impl.ValueReader
-
- com.fasterxml.jackson.jr.ob.impl.SimpleValueReader
-
public class SimpleValueReader extends ValueReader
ValueReader
used for simple scalar types and related.
-
-
Constructor Summary
Constructors Constructor Description SimpleValueReader(int typeId, java.lang.Class<?> raw)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected long
_fetchLong(com.fasterxml.jackson.core.JsonParser p)
protected byte[]
_readBinary(com.fasterxml.jackson.core.JsonParser p)
protected int[]
_readIntArray(com.fasterxml.jackson.core.JsonParser p)
java.lang.Object
read(JSONReader reader, com.fasterxml.jackson.core.JsonParser p)
java.lang.Object
readNext(JSONReader reader, com.fasterxml.jackson.core.JsonParser p)
-
Methods inherited from class com.fasterxml.jackson.jr.ob.impl.ValueReader
_tokenDesc, _tokenDesc
-
-
-
-
Method Detail
-
readNext
public java.lang.Object readNext(JSONReader reader, com.fasterxml.jackson.core.JsonParser p) throws java.io.IOException
- Specified by:
readNext
in classValueReader
- Throws:
java.io.IOException
-
read
public java.lang.Object read(JSONReader reader, com.fasterxml.jackson.core.JsonParser p) throws java.io.IOException
- Specified by:
read
in classValueReader
- Throws:
java.io.IOException
-
_readBinary
protected byte[] _readBinary(com.fasterxml.jackson.core.JsonParser p) throws java.io.IOException
- Throws:
java.io.IOException
-
_readIntArray
protected int[] _readIntArray(com.fasterxml.jackson.core.JsonParser p) throws java.io.IOException
- Throws:
java.io.IOException
-
_fetchLong
protected long _fetchLong(com.fasterxml.jackson.core.JsonParser p) throws java.io.IOException
- Throws:
java.io.IOException
-
-