Module spring.data.mongodb
Class PersistentPropertyTranslator
java.lang.Object
org.springframework.data.mongodb.core.mapping.PersistentPropertyTranslator
Utility to translate a
MongoPersistentProperty into a corresponding property from a different
MongoPersistentEntity by looking it up by name.
Mainly used within the framework.
- Since:
- 3.4
- Author:
- Mark Paluch
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic PersistentPropertyTranslatorcreate(MongoPersistentEntity<?> targetEntity) Create a newPersistentPropertyTranslator.static PersistentPropertyTranslatorcreate(MongoPersistentEntity<?> targetEntity, Predicate<MongoPersistentProperty> translationFilter) Create a newPersistentPropertyTranslatoraccepting afilter predicatewhether the translation should happen at all.translate(MongoPersistentProperty property) Translate aMongoPersistentPropertyinto a corresponding property from a differentMongoPersistentEntity.
-
Constructor Details
-
PersistentPropertyTranslator
public PersistentPropertyTranslator()
-
-
Method Details
-
translate
Translate aMongoPersistentPropertyinto a corresponding property from a differentMongoPersistentEntity.- Parameters:
property- must not be null.- Returns:
- the translated property. Can be the original
property.
-
create
Create a newPersistentPropertyTranslator.- Parameters:
targetEntity- must not be null.- Returns:
- the property translator to use.
-
create
public static PersistentPropertyTranslator create(@Nullable MongoPersistentEntity<?> targetEntity, Predicate<MongoPersistentProperty> translationFilter) Create a newPersistentPropertyTranslatoraccepting afilter predicatewhether the translation should happen at all.- Parameters:
targetEntity- must not be null.translationFilter- must not be null.- Returns:
- the property translator to use.
-