Package | Description |
---|---|
org.springframework.data.mapping |
Base package for the mapping subsystem.
|
Modifier and Type | Method and Description |
---|---|
TraversalContext |
TraversalContext.registerCollectionHandler(PersistentProperty<?> property,
Function<? super Collection<?>,Object> handler)
Registers a
Function to handle Collection values for the given property. |
<T> TraversalContext |
TraversalContext.registerHandler(PersistentProperty<?> property,
Class<T> type,
Function<? super T,Object> handler)
Registers the given
Function to post-process values obtained for the given PersistentProperty for
the given type. |
TraversalContext |
TraversalContext.registerHandler(PersistentProperty<?> property,
Function<Object,Object> handler)
Registers a
Function to post-process values for the given property. |
TraversalContext |
TraversalContext.registerListHandler(PersistentProperty<?> property,
Function<? super List<?>,Object> handler)
|
TraversalContext |
TraversalContext.registerMapHandler(PersistentProperty<?> property,
Function<? super Map<?,?>,Object> handler)
|
TraversalContext |
TraversalContext.registerSetHandler(PersistentProperty<?> property,
Function<? super Set<?>,Object> handler)
|
Modifier and Type | Method and Description |
---|---|
default Object |
PersistentPropertyAccessor.getProperty(PersistentPropertyPath<? extends PersistentProperty<?>> path,
TraversalContext context)
Deprecated.
|
Copyright © 2011–2022 Pivotal Software, Inc.. All rights reserved.