Uses of Class
org.codehaus.jackson.map.MappingIterator
-
Packages that use MappingIterator 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 viaObjectMapper
class, as well as convenience methods included inJsonParser
-
-
Uses of MappingIterator in org.codehaus.jackson.map
Fields in org.codehaus.jackson.map declared as MappingIterator Modifier and Type Field Description protected static MappingIterator<?>
MappingIterator. EMPTY_ITERATOR
Methods in org.codehaus.jackson.map that return MappingIterator Modifier and Type Method Description protected static <T> MappingIterator<T>
MappingIterator. emptyIterator()
<T> MappingIterator<T>
ObjectMapper. readValues(JsonParser jp, 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(File src)
Method for reading sequence of Objects from parser stream.<T> MappingIterator<T>
ObjectReader. readValues(InputStream src)
Method for reading sequence of Objects from parser stream.<T> MappingIterator<T>
ObjectReader. readValues(Reader src)
Method for reading sequence of Objects from parser stream.<T> MappingIterator<T>
ObjectReader. readValues(String json)
Method for reading sequence of Objects from parser stream.<T> MappingIterator<T>
ObjectReader. readValues(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.
-