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.ParameterType
instead of the key "org.hibernate.type.ParameterType".
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
DynamicParameterizedType.ParameterType
-
Field Summary
Fields Modifier and Type Field Description static String
ACCESS_TYPE
static String
ENTITY
static String
IS_DYNAMIC
static String
IS_PRIMARY_KEY
static String
PARAMETER_TYPE
static String
PROPERTY
static String
RETURNED_CLASS
static String
XPROPERTY
-
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
-
-