Uses of Class
org.springframework.data.mapping.AccessOptions.GetOptions
-
Uses of AccessOptions.GetOptions in org.springframework.data.mapping
Modifier and TypeMethodDescriptionstatic AccessOptions.GetOptions
AccessOptions.defaultGetOptions()
Returns the defaultAccessOptions.GetOptions
rejecting intermediate null values when accessing property paths.AccessOptions.GetOptions.registerCollectionHandler
(PersistentProperty<?> property, Function<? super Collection<?>, Object> handler) Registers aFunction
to handleCollection
values for the given property.AccessOptions.GetOptions.registerHandler
(PersistentProperty<?> property, Class<T> type, Function<? super T, Object> handler) Registers the givenFunction
to post-process values obtained for the givenPersistentProperty
for the given type.AccessOptions.GetOptions.registerHandler
(PersistentProperty<?> property, Function<Object, Object> handler) Registers aFunction
to post-process values for the given property.AccessOptions.GetOptions.registerListHandler
(PersistentProperty<?> property, Function<? super List<?>, Object> handler) AccessOptions.GetOptions.registerMapHandler
(PersistentProperty<?> property, Function<? super Map<?, ?>, Object> handler) AccessOptions.GetOptions.registerSetHandler
(PersistentProperty<?> property, Function<? super Set<?>, Object> handler) AccessOptions.GetOptions.withNullValues
(AccessOptions.GetOptions.GetNulls nullValues) Modifier and TypeMethodDescriptionPersistentPropertyPathAccessor.getProperty
(PersistentPropertyPath<? extends PersistentProperty<?>> path, AccessOptions.GetOptions options) Return the value pointed to by the givenPersistentPropertyPath
.