Uses of Interface
org.springframework.data.core.PropertyReference
Packages that use PropertyReference
Package
Description
General purpose conversion framework to read objects from a data store abstraction and write it back.
Provides basic classes for type handling and other core helpers that are not specific to any part of the framework.
-
Uses of PropertyReference in org.springframework.data.convert
Methods in org.springframework.data.convert with parameters of type PropertyReferenceModifier and TypeMethodDescriptionPropertyValueConverterRegistrar.registerConverter(PropertyReference<T, S> property) Starts a converter registration by pointing to a property of a domain type. -
Uses of PropertyReference in org.springframework.data.core
Methods in org.springframework.data.core that return PropertyReferenceModifier and TypeMethodDescriptionstatic <T, P extends @Nullable Object>
PropertyReference<T, P> PropertyReference.of(PropertyReference<T, P> property) Syntax sugar to create aPropertyReferencefrom a method reference to a Java beans property.static <T,P> PropertyReference <T, P> PropertyReference.ofMany(PropertyReference<T, ? extends Iterable<P>> property) Syntax sugar to create aPropertyReferencefrom a method reference to a Java beans property.static <T, P extends @Nullable Object>
PropertyReference<T, P> PropertyReference.property(PropertyReference<T, P> property) Syntax sugar to create aPropertyReferencefrom a method reference to a Java beans property.Methods in org.springframework.data.core with parameters of type PropertyReferenceModifier and TypeMethodDescriptionstatic <T,P> TypedPropertyPath <T, P> PropertyPath.of(PropertyReference<T, P> property) Syntax sugar to create aTypedPropertyPathfrom a method reference to a Java beans property.static <T, P extends @Nullable Object>
PropertyReference<T, P> PropertyReference.of(PropertyReference<T, P> property) Syntax sugar to create aPropertyReferencefrom a method reference to a Java beans property.static <T,P> TypedPropertyPath <T, P> PropertyPath.ofMany(PropertyReference<T, ? extends Iterable<P>> property) Syntax sugar to create aTypedPropertyPathfrom a method reference to a Java beans collection property.static <T,P> PropertyReference <T, P> PropertyReference.ofMany(PropertyReference<T, ? extends Iterable<P>> property) Syntax sugar to create aPropertyReferencefrom a method reference to a Java beans property.static <T, P extends @Nullable Object>
TypedPropertyPath<T, P> TypedPropertyPath.path(PropertyReference<T, P> property) Syntax sugar to create aTypedPropertyPathfrom a property described as method reference to a Java beans property.static <T, P extends @Nullable Object>
PropertyReference<T, P> PropertyReference.property(PropertyReference<T, P> property) Syntax sugar to create aPropertyReferencefrom a method reference to a Java beans property.default <N extends @Nullable Object>
TypedPropertyPath<T, N> PropertyReference.then(PropertyReference<P, N> next) Extend the property to a property path by appending thenextpath segment and return a new property path instance.default <N extends @Nullable Object>
TypedPropertyPath<T, N> TypedPropertyPath.then(PropertyReference<P, N> next) Extend the property path by appending thenextpath segment and return a new property path instance.default <N extends @Nullable Object>
TypedPropertyPath<T, N> PropertyReference.thenMany(PropertyReference<P, ? extends Iterable<N>> next) Extend the property to a property path by appending thenextpath segment and return a new property path instance.default <N extends @Nullable Object>
TypedPropertyPath<T, N> TypedPropertyPath.thenMany(PropertyReference<P, ? extends Iterable<N>> next) Extend the property path by appending thenextpath segment and return a new property path instance.