Package org.hibernate.annotations
Annotation Interface DialectOverride.OverridesAnnotation
- Enclosing interface:
- DialectOverride
@Target(ANNOTATION_TYPE)
@Retention(RUNTIME)
public static @interface DialectOverride.OverridesAnnotation
Marks an annotation type as a dialect-specific override for
some other annotation type.
The marked annotation must have the following members:
Class<? extends Dialect> dialect()
,Version before()
,Version sameOrAfter()
, andA override()
, whereA
is the type of annotation which the marked annotation overrides.
-
Required Element Summary
Required ElementsModifier and TypeRequired ElementDescriptionClass<? extends Annotation>
The class of the annotation that is overridden.
-
Element Details
-
value
Class<? extends Annotation> valueThe class of the annotation that is overridden.
-