See: Description
| Interface | Description |
|---|---|
| ClassGeneratingEntityInstantiator.ObjectInstantiator |
Needs to be public as otherwise the implementation class generated does not see the interface from the classloader.
|
| ConverterBuilder |
API to easily set up
GenericConverter instances using Java 8 lambdas, mostly in bidirectional fashion for
easy registration as custom type converters of the Spring Data mapping subsystem. |
| ConverterBuilder.ConverterAware |
A
ConverterBuilder aware of both a reading and writing converter. |
| ConverterBuilder.ReadingConverterAware |
Exposes a reading converter.
|
| ConverterBuilder.ReadingConverterBuilder<T,S> |
Interface to represent an intermediate setup step of
ConverterBuilder.ConverterAware defining a reading converter first. |
| ConverterBuilder.WritingConverterAware |
Exposes a writing converter.
|
| ConverterBuilder.WritingConverterBuilder<S,T> |
Interface to represent an intermediate setup step of
ConverterBuilder.ConverterAware defining a writing converter first. |
| EntityConverter<E extends PersistentEntity<?,P>,P extends PersistentProperty<P>,T,S> |
Combined
EntityReader and EntityWriter and add the ability to access a MappingContext and
ConversionService. |
| EntityInstantiator |
SPI to abstract strategies to create instances for
PersistentEntitys. |
| EntityReader<T,S> |
Interface to read object from store specific sources.
|
| EntityWriter<T,S> |
Interface to write objects into store specific sinks.
|
| TypeAliasAccessor<S> |
Interface to abstract implementations of how to access a type alias from a given source or sink.
|
| TypeInformationMapper |
Interface to abstract the mapping from a type alias to the actual type.
|
| TypeMapper<S> |
Interface to define strategies how to store type information in a store specific sink or source.
|
| Class | Description |
|---|---|
| ClassGeneratingEntityInstantiator |
An
EntityInstantiator that can generate byte code to speed-up dynamic object instantiation. |
| ConfigurableTypeInformationMapper |
TypeInformationMapper implementation that can be either set up using a MappingContext or manually set
up Map of String aliases to types. |
| CustomConversions |
Value object to capture custom conversion.
|
| CustomConversions.StoreConversions |
Value type to capture store-specific extensions to the
CustomConversions. |
| DefaultTypeMapper<S> |
Default implementation of
TypeMapper. |
| EntityInstantiators |
Simple value object allowing access to
EntityInstantiator instances for a given type falling back to a
default one. |
| JodaTimeConverters |
Helper class to register JodaTime specific
Converter implementations in case the library is present on the
classpath. |
| Jsr310Converters |
Helper class to register JSR-310 specific
Converter implementations in case the we're running on Java 8. |
| KotlinClassGeneratingEntityInstantiator |
Kotlin-specific extension to
ClassGeneratingEntityInstantiator that adapts Kotlin constructors with
defaulting. |
| MappingContextTypeInformationMapper |
TypeInformationMapper implementation that can be either set up using a MappingContext or manually set
up Map of String aliases to types. |
| SimpleTypeInformationMapper |
Basic
TypeInformationMapper implementation that interprets the alias handles as fully qualified class name
and tries to load a class with the given name to build TypeInformation. |
| ThreeTenBackPortConverters |
Helper class to register
Converter implementations for the ThreeTen Backport project in case it's present on
the classpath. |
| Annotation Type | Description |
|---|---|
| ReadingConverter |
Annotation to clarify intended usage of a
Converter as reading converter in case the conversion types leave
room for disambiguation. |
| WritingConverter |
Annotation to clarify intended usage of a
Converter as writing converter in case the conversion types leave
room for disambiguation. |
EntityConverterCopyright © 2011–2020 Pivotal Software, Inc.. All rights reserved.