Uses of Class
org.springframework.data.mapping.AccessOptions.GetOptions
Packages that use AccessOptions.GetOptions
-
Uses of AccessOptions.GetOptions in org.springframework.data.mapping
Methods in org.springframework.data.mapping that return AccessOptions.GetOptionsModifier 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<?>, @Nullable 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<@Nullable Object, @Nullable Object> handler) Registers aFunction
to post-process values for the given property.AccessOptions.GetOptions.registerListHandler
(PersistentProperty<?> property, Function<? super List<?>, @Nullable Object> handler) AccessOptions.GetOptions.registerMapHandler
(PersistentProperty<?> property, Function<? super Map<?, ?>, @Nullable Object> handler) AccessOptions.GetOptions.registerSetHandler
(PersistentProperty<?> property, Function<? super Set<?>, @Nullable Object> handler) AccessOptions.GetOptions.withNullValues
(AccessOptions.GetOptions.GetNulls nullValues) Methods in org.springframework.data.mapping with parameters of type AccessOptions.GetOptionsModifier and TypeMethodDescription@Nullable Object
PersistentPropertyPathAccessor.getProperty
(PersistentPropertyPath<? extends PersistentProperty<?>> path, AccessOptions.GetOptions options) Return the value pointed to by the givenPersistentPropertyPath
.