Interface DefaultBinderDefinitionStep<S extends DefaultBinderDefinitionStep>
-
- All Known Subinterfaces:
DefaultBridgeDefinitionStep<S,T>
public interface DefaultBinderDefinitionStep<S extends DefaultBinderDefinitionStep>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SidentifierBinder(IdentifierBinder binder)Use the given binder by default for properties with a matching type marked as document identifier (e.g.SvalueBinder(ValueBinder binder)Use the given binder by default for properties with a matching type mapped to an index field directly (e.g.
-
-
-
Method Detail
-
identifierBinder
S identifierBinder(IdentifierBinder binder)
Use the given binder by default for properties with a matching type marked as document identifier (e.g. withDocumentId).- Parameters:
binder- The binder to apply to matching properties by default.- Returns:
this, for method chaining.
-
valueBinder
S valueBinder(ValueBinder binder)
Use the given binder by default for properties with a matching type mapped to an index field directly (e.g. withGenericField,FullTextField, ...).- Parameters:
binder- The binder to apply to matching properties by default.- Returns:
this, for method chaining.
-
-