Class OrderColumnJpaAnnotation
java.lang.Object
org.hibernate.boot.models.annotations.internal.OrderColumnJpaAnnotation
- All Implemented Interfaces:
Annotation
,ColumnDetails
,ColumnDetails.Definable
,ColumnDetails.Mutable
,ColumnDetails.Nullable
@Generated("org.hibernate.orm.build.annotations.ClassGeneratorProcessor")
public class OrderColumnJpaAnnotation
extends Object
implements OrderColumn, ColumnDetails, ColumnDetails.Definable, ColumnDetails.Nullable, ColumnDetails.Mutable
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.hibernate.boot.models.annotations.spi.ColumnDetails
ColumnDetails.AlternateTableCapable, ColumnDetails.Definable, ColumnDetails.Mutable, ColumnDetails.Nullable, ColumnDetails.SecondSizable, ColumnDetails.Sizable, ColumnDetails.Uniqueable
-
Constructor Summary
ConstructorsConstructorDescriptionOrderColumnJpaAnnotation
(OrderColumn annotation, org.hibernate.models.spi.SourceModelBuildingContext modelContext) Used in creating annotation instances from JDK variantOrderColumnJpaAnnotation
(Map<String, Object> attributeValues, org.hibernate.models.spi.SourceModelBuildingContext modelContext) Used in creating annotation instances from Jandex variantOrderColumnJpaAnnotation
(org.hibernate.models.spi.SourceModelBuildingContext modelContext) Used in creating dynamic annotation instances (e.g. -
Method Summary
Modifier and TypeMethodDescriptionClass<? extends Annotation>
void
apply
(JaxbOrderColumnImpl jaxbColumn, XmlDocumentContext xmlDocumentContext) void
columnDefinition
(String value) boolean
void
insertable
(boolean value) name()
void
boolean
nullable()
void
nullable
(boolean value) options()
void
boolean
void
updatable
(boolean value)
-
Constructor Details
-
OrderColumnJpaAnnotation
public OrderColumnJpaAnnotation(org.hibernate.models.spi.SourceModelBuildingContext modelContext) Used in creating dynamic annotation instances (e.g. from XML) -
OrderColumnJpaAnnotation
public OrderColumnJpaAnnotation(OrderColumn annotation, org.hibernate.models.spi.SourceModelBuildingContext modelContext) Used in creating annotation instances from JDK variant -
OrderColumnJpaAnnotation
public OrderColumnJpaAnnotation(Map<String, Object> attributeValues, org.hibernate.models.spi.SourceModelBuildingContext modelContext) Used in creating annotation instances from Jandex variant
-
-
Method Details
-
annotationType
- Specified by:
annotationType
in interfaceAnnotation
-
name
- Specified by:
name
in interfaceColumnDetails
-
name
- Specified by:
name
in interfaceColumnDetails
-
nullable
public boolean nullable()- Specified by:
nullable
in interfaceColumnDetails.Nullable
-
nullable
public void nullable(boolean value) - Specified by:
nullable
in interfaceColumnDetails.Nullable
-
insertable
public boolean insertable()- Specified by:
insertable
in interfaceColumnDetails.Mutable
-
insertable
public void insertable(boolean value) - Specified by:
insertable
in interfaceColumnDetails.Mutable
-
updatable
public boolean updatable()- Specified by:
updatable
in interfaceColumnDetails.Mutable
-
updatable
public void updatable(boolean value) - Specified by:
updatable
in interfaceColumnDetails.Mutable
-
columnDefinition
- Specified by:
columnDefinition
in interfaceColumnDetails.Definable
-
columnDefinition
- Specified by:
columnDefinition
in interfaceColumnDetails.Definable
-
options
- Specified by:
options
in interfaceColumnDetails.Definable
-
options
- Specified by:
options
in interfaceColumnDetails.Definable
-
apply
-