Interface PropertyConverter<P,D>
-
public interface PropertyConverter<P,D>To use custom types in your entity, implement this to convert db values to entity values and back. Notes for implementations:- Converters are created by the default constructor
- Converters must be implemented thread-safe
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DconvertToDatabaseValue(P entityProperty)PconvertToEntityProperty(D databaseValue)
-