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 viaObjectMapperclass, 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_ITERATORMethods 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, 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)Since 1.9.3<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.
-