Top Classes
module jackson.dataformat.avro

Package com.fasterxml.jackson.dataformat.avro.deser


Class Summary

Modifier and TypeClass and Description
public abstract class
public class
AvroFieldDefaulters

Factory class for various default providers

public abstract class
AvroFieldReader

Entity that encapsulates details of accessing value of a single field of a "Record" (Avro term, corresponding roughly to JSON Object).

public abstract class
AvroParserImpl

Implementation class that exposes additional internal API to be used as callbacks by AvroReadContext implementations.

public abstract class
AvroReadContext

We need to use a custom context to be able to carry along Object and array records.

public abstract class
AvroReaderFactory

Helper class used for constructing a hierarchic reader for given (reader-) schema.

public abstract class
AvroStructureReader

Base class for handlers for Avro structured types (or in some cases, scalar types that need to be exposed in unified way similar to structured types).

public class
AvroUntypedDeserializer

Deserializer for handling when we have no target type, just schema type.

public class
JacksonAvroParserImpl

Implementation class that exposes additional internal API to be used as callbacks by AvroReadContext implementations.

public abstract class
public class
MissingReader

Bogus AvroReadContext implementation used in two cases:

  1. Parser has not yet been configured by an Avro Schema
  2. Parser has been closed (explicitly or implicitly)
pack-priv abstract class
public class
RootReader

Context used at root level; basically just a container over actual AvroStructureReader.

public abstract class
ScalarDecoder

Helper classes for reading non-structured values, and can thereby usually be accessed using simpler interface (although sometimes not: if so, instances are wrapped in ScalarDecoderWrappers).

pack-priv class
ScalarDecoderWrapper

Simple adapter needed in some cases to unify handling of reading (and skipping) of structured and scalar values.

public class
ScalarDefaults

Container for various ScalarDecoder implementations that are used for providing default values for scalar-valued record properties.

public class
StructDefaults

Default-providing AvroFieldReader implementations for structured types.

pack-priv class
UnionReader

Reader used in cases where union contains at least one non-scalar type.