Uses of Interface
org.springframework.data.mapping.PersistentPropertyAccessor
Package
Description
Base package for the mapping subsystem.
Core implementation of the mapping subsystem's model.
-
Uses of PersistentPropertyAccessor in org.springframework.data.mapping
Modifier and TypeInterfaceDescriptioninterface
Extension ofPersistentPropertyAccessor
that is also able to obtain and set values forPersistentPropertyPath
s.Modifier and TypeMethodDescriptiondefault <T> PersistentPropertyAccessor<T>
PersistentProperty.getAccessorForOwner
(T owner) Returns aPersistentPropertyAccessor
for the current property's owning value.<B> PersistentPropertyAccessor<B>
PersistentEntity.getPropertyAccessor
(B bean) Returns aPersistentPropertyAccessor
to access property values of the given bean. -
Uses of PersistentPropertyAccessor in org.springframework.data.mapping.model
Modifier and TypeClassDescriptionclass
PersistentPropertyAccessor
that potentially converts the value handed toConvertingPropertyAccessor.setProperty(PersistentProperty, Object)
to the type of thePersistentProperty
using aConversionService
.class
APersistentPropertyAccessor
that will use an entity'sPersistenceCreator
to create a new instance of it to apply a new value for a givenPersistentProperty
.Modifier and TypeMethodDescription<B> PersistentPropertyAccessor<B>
BasicPersistentEntity.getPropertyAccessor
(B bean) <T> PersistentPropertyAccessor<T>
BeanWrapperPropertyAccessorFactory.getPropertyAccessor
(PersistentEntity<?, ?> entity, T bean) <T> PersistentPropertyAccessor<T>
ClassGeneratingPropertyAccessorFactory.getPropertyAccessor
(PersistentEntity<?, ?> entity, T bean) <T> PersistentPropertyAccessor<T>
InstantiationAwarePropertyAccessorFactory.getPropertyAccessor
(PersistentEntity<?, ?> entity, T bean) <T> PersistentPropertyAccessor<T>
PersistentPropertyAccessorFactory.getPropertyAccessor
(PersistentEntity<?, ?> entity, T bean) ModifierConstructorDescriptionConvertingPropertyAccessor
(PersistentPropertyAccessor<T> accessor, ConversionService conversionService) Creates a newConvertingPropertyAccessor
for the given delegatePersistentPropertyAccessor
andConversionService
.ModifierConstructorDescriptionInstantiationAwarePropertyAccessor
(T bean, Function<T, PersistentPropertyAccessor<T>> accessorFunction, EntityInstantiators instantiators) Creates anInstantiationAwarePropertyAccessor
using the given delegateaccessorFunction
andEntityInstantiators
.