Package org.hibernate.annotations
Annotation Type TypeBinderType
-
@Target(ANNOTATION_TYPE) @Retention(RUNTIME) @Incubating public @interface TypeBinderType
Associates a user-defined annotation with aTypeBinder
, allowing the annotation to drive some custom model binding.The user-defined annotation may be used to annotate entity and embeddable classes. The
TypeBinder
will be called when the annotation is discovered by Hibernate.- See Also:
AttributeBinderType
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description Class<? extends TypeBinder<?>>
binder
-
-
-
Element Detail
-
binder
Class<? extends TypeBinder<?>> binder
- Returns:
- a type which implements
TypeBinder
-
-