Package | Description |
---|---|
org.codehaus.jackson.map |
Contains basic mapper (conversion) functionality that
allows for converting between regular streaming json content and
Java objects (beans or Tree Model: support for both is via
ObjectMapper class, as well
as convenience methods included in
JsonParser |
Modifier and Type | Field | Description |
---|---|---|
protected static MappingIterator<?> |
MappingIterator.EMPTY_ITERATOR |
Modifier and Type | Method | Description |
---|---|---|
protected static <T> MappingIterator<T> |
MappingIterator.emptyIterator() |
|
<T> MappingIterator<T> |
ObjectMapper.readValues(JsonParser jp,
java.lang.Class<T> valueType) |
Method for reading sequence of Objects from parser stream.
|
<T> MappingIterator<T> |
ObjectMapper.readValues(JsonParser jp,
JavaType valueType) |
Method for reading sequence of Objects from parser stream.
|
<T> MappingIterator<T> |
ObjectMapper.readValues(JsonParser jp,
TypeReference<?> valueTypeRef) |
Method for reading sequence of Objects from parser stream.
|
<T> MappingIterator<T> |
ObjectReader.readValues(byte[] src,
int offset,
int length) |
Method for reading sequence of Objects from parser stream.
|
<T> MappingIterator<T> |
ObjectReader.readValues(java.io.File src) |
Method for reading sequence of Objects from parser stream.
|
<T> MappingIterator<T> |
ObjectReader.readValues(java.io.InputStream src) |
Method for reading sequence of Objects from parser stream.
|
<T> MappingIterator<T> |
ObjectReader.readValues(java.io.Reader src) |
Method for reading sequence of Objects from parser stream.
|
<T> MappingIterator<T> |
ObjectReader.readValues(java.lang.String json) |
Method for reading sequence of Objects from parser stream.
|
<T> MappingIterator<T> |
ObjectReader.readValues(java.net.URL src) |
Method for reading sequence of Objects from parser stream.
|
<T> MappingIterator<T> |
ObjectReader.readValues(JsonParser jp) |
Method for reading sequence of Objects from parser stream.
|