Package org.hibernate.usertype
Interface ParameterizedType
-
- All Known Subinterfaces:
DynamicParameterizedType
- All Known Implementing Classes:
EnumType
,SerializableToBlobType
,UserTypeLegacyBridge
public interface ParameterizedType
Support for parameterizable types. AUserType
orUserCollectionType
may be made parameterizable by implementing this interface. Parameters for a type may be set by using a nested type element for the property element in the mapping file, or by defining a typedef.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setParameterValues(Properties parameters)
Gets called by Hibernate to pass the configured type parameters to the implementation.
-
-
-
Method Detail
-
setParameterValues
void setParameterValues(Properties parameters)
Gets called by Hibernate to pass the configured type parameters to the implementation.
-
-