Package org.hibernate.usertype
Interface DynamicParameterizedType
-
- All Superinterfaces:
ParameterizedType
- All Known Implementing Classes:
EnumType,SerializableToBlobType
public interface DynamicParameterizedType extends ParameterizedType
Types which implement this interface will haveParameterizedType.setParameterValues(Properties)called with an instance of the classDynamicParameterizedType.ParameterTypeinstead of the key "org.hibernate.type.ParameterType".
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceDynamicParameterizedType.ParameterType
-
Field Summary
Fields Modifier and Type Field Description static StringACCESS_TYPEstatic StringENTITYstatic StringIS_DYNAMICstatic StringIS_PRIMARY_KEYstatic StringPARAMETER_TYPEstatic StringPROPERTYstatic StringRETURNED_CLASSstatic StringXPROPERTY
-
Method Summary
-
Methods inherited from interface org.hibernate.usertype.ParameterizedType
setParameterValues
-
-
-
-
Field Detail
-
PARAMETER_TYPE
static final String PARAMETER_TYPE
- See Also:
- Constant Field Values
-
IS_DYNAMIC
static final String IS_DYNAMIC
- See Also:
- Constant Field Values
-
RETURNED_CLASS
static final String RETURNED_CLASS
- See Also:
- Constant Field Values
-
IS_PRIMARY_KEY
static final String IS_PRIMARY_KEY
- See Also:
- Constant Field Values
-
ENTITY
static final String ENTITY
- See Also:
- Constant Field Values
-
PROPERTY
static final String PROPERTY
- See Also:
- Constant Field Values
-
ACCESS_TYPE
static final String ACCESS_TYPE
- See Also:
- Constant Field Values
-
XPROPERTY
static final String XPROPERTY
- See Also:
- Constant Field Values
-
-