Interface TypeMappingStep
-
public interface TypeMappingStepThe step in a mapping definition where a type can be mapped, and where properties of that type can be referenced to map them more precisely.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TypeMappingStepbinder(TypeBinder binder)TypeMappingIndexedStepindexed()Maps an entity type to an index.PropertyMappingStepproperty(String propertyName)Starts the definition of the mapping of a specific property.
-
-
-
Method Detail
-
indexed
TypeMappingIndexedStep indexed()
Maps an entity type to an index.- Returns:
this, for method chaining.- See Also:
Indexed
-
binder
TypeMappingStep binder(TypeBinder binder)
- Parameters:
binder- ATypeBinderresponsible for creating a bridge.- Returns:
this, for method chaining.- See Also:
TypeBinder
-
property
PropertyMappingStep property(String propertyName)
Starts the definition of the mapping of a specific property.- Parameters:
propertyName- The name of a property in this type.- Returns:
- A DSL step where the property mapping can be defined in more details.
-
-