Uses of Class
tools.jackson.databind.MappingIterator
Packages that use MappingIterator
Package
Description
Basic data binding (mapping) functionality that
allows for reading JSON content into Java Objects (POJOs)
and JSON Trees (
JsonNode), as well as
writing Java Objects and trees as JSON.-
Uses of MappingIterator in tools.jackson.databind
Fields in tools.jackson.databind declared as MappingIteratorModifier and TypeFieldDescriptionprotected static final MappingIterator<?>MappingIterator.EMPTY_ITERATORMethods in tools.jackson.databind that return MappingIteratorModifier and TypeMethodDescriptionprotected <T> MappingIterator<T>ObjectReader._bindAndReadValues(DeserializationContextExt ctxt, JsonParser p) protected <T> MappingIterator<T>ObjectReader._newIterator(JsonParser p, DeserializationContext ctxt, ValueDeserializer<?> deser, boolean parserManaged) Factory method used to createMappingIteratorinstances; either default, or custom subtype.static <T> MappingIterator<T>MappingIterator.emptyIterator()Method for getting an "empty" iterator instance: one that never has more values; may be freely shared.<T> MappingIterator<T>ObjectMapper.readValues(JsonParser p, Class<T> valueType) Convenience method, equivalent in function to:<T> MappingIterator<T>ObjectMapper.readValues(JsonParser p, TypeReference<T> valueType) <T> MappingIterator<T>ObjectMapper.readValues(JsonParser p, JavaType valueType) Convenience method, equivalent in function to:final <T> MappingIterator<T>ObjectReader.readValues(byte[] content) Overloaded version ofObjectReader.readValue(InputStream).<T> MappingIterator<T>ObjectReader.readValues(byte[] content, int offset, int length) Overloaded version ofObjectReader.readValue(InputStream).<T> MappingIterator<T>ObjectReader.readValues(DataInput src) <T> MappingIterator<T>ObjectReader.readValues(File src) Overloaded version ofObjectReader.readValue(InputStream).<T> MappingIterator<T>ObjectReader.readValues(InputStream src) Method for reading sequence of Objects from parser stream.<T> MappingIterator<T>ObjectReader.readValues(Reader src) Overloaded version ofObjectReader.readValue(InputStream).<T> MappingIterator<T>ObjectReader.readValues(String content) Overloaded version ofObjectReader.readValue(InputStream).<T> MappingIterator<T>ObjectReader.readValues(Path src) Overloaded version ofObjectReader.readValues(InputStream).<T> MappingIterator<T>ObjectReader.readValues(JsonParser p) Method for reading sequence of Objects from parser stream.<T> MappingIterator<T>ObjectReader.readValues(TokenBuffer src) Constructors in tools.jackson.databind with parameters of type MappingIteratorModifierConstructorDescriptionprotectedMappingIterator(MappingIterator<T> src) Copy-constructor that sub-classes can use when creating new instances by fluent-style construction.