Package org.hibernate.annotations
Annotation Type ParamDef
-
@Target({}) @Retention(RUNTIME) public @interface ParamDef
Details about a parameter declared in aFilterDef.Mainly used to support cases where the proper
typecannot be deduced by Hibernate.- See Also:
FilterDef.parameters()
-
-
Element Detail
-
name
String name
The name of the parameter.
-
-
-
type
Class<?> type
The type to use when binding the parameter value.Generally deduced from the bind value. Allows to specify a specific type to use.
The supplied Class can be one of the following:
-
a
UserType -
an
AttributeConverter -
a
JavaType -
any Java type resolvable from
JavaTypeRegistry
-
a
-
-