Class JaxbOrderColumnImpl
java.lang.Object
org.hibernate.boot.jaxb.mapping.spi.JaxbOrderColumnImpl
- All Implemented Interfaces:
Serializable, JaxbColumn, JaxbDatabaseObject
@Target({METHOD, FIELD}) @Retention(RUNTIME)
public @interface OrderColumn {
String name() default "";
boolean nullable() default true;
boolean insertable() default true;
boolean updatable() default true;
String columnDefinition() default "";
String options() default "";
}
<p>Java class for order-column complex type</p>.
<p>The following schema fragment specifies the expected content contained within this class.</p>
<pre>{@code
<complexType name="order-column">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="nullable" type="{http://www.w3.org/2001/XMLSchema}boolean" />
<attribute name="insertable" type="{http://www.w3.org/2001/XMLSchema}boolean" />
<attribute name="updatable" type="{http://www.w3.org/2001/XMLSchema}boolean" />
<attribute name="column-definition" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="options" type="{http://www.w3.org/2001/XMLSchema}string" />
</restriction>
</complexContent>
</complexType>
}</pre>
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the columnDefinition property.getName()Gets the value of the name property.Gets the value of the options property.Gets the value of the insertable property.Gets the value of the nullable property.Gets the value of the updatable property.voidsetColumnDefinition(String value) Sets the value of the columnDefinition property.voidsetInsertable(Boolean value) Sets the value of the insertable property.voidSets the value of the name property.voidsetNullable(Boolean value) Sets the value of the nullable property.voidsetOptions(String value) Sets the value of the options property.voidsetUpdatable(Boolean value) Sets the value of the updatable property.Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface JaxbColumn
getTable
-
Field Details
-
name
-
nullable
-
insertable
-
updatable
-
columnDefinition
-
options
-
-
Constructor Details
-
JaxbOrderColumnImpl
public JaxbOrderColumnImpl()
-
-
Method Details
-
getName
Gets the value of the name property.- Specified by:
getNamein interfaceJaxbColumn- Returns:
- possible object is
String
-
setName
-
isNullable
-
setNullable
-
isInsertable
-
setInsertable
-
isUpdatable
-
setUpdatable
-
getColumnDefinition
-
setColumnDefinition
-
getOptions
-
setOptions
-