Uses of Interface
org.springframework.data.mapping.PersistentPropertyAccessor
Packages that use 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
Subinterfaces of PersistentPropertyAccessor in org.springframework.data.mappingModifier and TypeInterfaceDescriptioninterface
Extension ofPersistentPropertyAccessor
that is also able to obtain and set values forPersistentPropertyPath
s.Methods in org.springframework.data.mapping that return PersistentPropertyAccessorModifier 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
Classes in org.springframework.data.mapping.model that implement PersistentPropertyAccessorModifier 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
.Methods in org.springframework.data.mapping.model that return PersistentPropertyAccessorModifier 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) Constructors in org.springframework.data.mapping.model with parameters of type PersistentPropertyAccessorModifierConstructorDescriptionConvertingPropertyAccessor
(PersistentPropertyAccessor<T> accessor, ConversionService conversionService) Creates a newConvertingPropertyAccessor
for the given delegatePersistentPropertyAccessor
andConversionService
.Constructor parameters in org.springframework.data.mapping.model with type arguments of type PersistentPropertyAccessorModifierConstructorDescriptionInstantiationAwarePropertyAccessor
(T bean, Function<T, PersistentPropertyAccessor<T>> accessorFunction, EntityInstantiators instantiators) Creates anInstantiationAwarePropertyAccessor
using the given delegateaccessorFunction
andEntityInstantiators
.