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 PersistentPropertyTranslator
create
(MongoPersistentEntity<?> targetEntity) Create a newPersistentPropertyTranslator
.static PersistentPropertyTranslator
create
(MongoPersistentEntity<?> targetEntity, Predicate<MongoPersistentProperty> translationFilter) Create a newPersistentPropertyTranslator
accepting afilter predicate
whether the translation should happen at all.translate
(MongoPersistentProperty property) Translate aMongoPersistentProperty
into a corresponding property from a differentMongoPersistentEntity
.
-
Constructor Details
-
PersistentPropertyTranslator
public PersistentPropertyTranslator()
-
-
Method Details
-
translate
Translate aMongoPersistentProperty
into 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 newPersistentPropertyTranslator
accepting afilter predicate
whether the translation should happen at all.- Parameters:
targetEntity
- must not be null.translationFilter
- must not be null.- Returns:
- the property translator to use.
-