public interface Column<T> extends Child<T>, OrmColumnCommType<T,Column<T>>
column
xsd typeModifier and Type | Method and Description |
---|---|
Column<T> |
columnDefinition(String columnDefinition)
Sets the
column-definition attribute |
String |
getColumnDefinition()
Returns the
column-definition attribute |
Integer |
getLength()
Returns the
length attribute |
String |
getName()
Returns the
name attribute |
Integer |
getPrecision()
Returns the
precision attribute |
Integer |
getScale()
Returns the
scale attribute |
String |
getTable()
Returns the
table attribute |
Column<T> |
insertable(Boolean insertable)
Sets the
insertable attribute |
Boolean |
isInsertable()
Returns the
insertable attribute |
Boolean |
isNullable()
Returns the
nullable attribute |
Boolean |
isUnique()
Returns the
unique attribute |
Boolean |
isUpdatable()
Returns the
updatable attribute |
Column<T> |
length(Integer length)
Sets the
length attribute |
Column<T> |
name(String name)
Sets the
name attribute |
Column<T> |
nullable(Boolean nullable)
Sets the
nullable attribute |
Column<T> |
precision(Integer precision)
Sets the
precision attribute |
Column<T> |
removeColumnDefinition()
Removes the
column-definition attribute |
Column<T> |
removeInsertable()
Removes the
insertable attribute |
Column<T> |
removeLength()
Removes the
length attribute |
Column<T> |
removeName()
Removes the
name attribute |
Column<T> |
removeNullable()
Removes the
nullable attribute |
Column<T> |
removePrecision()
Removes the
precision attribute |
Column<T> |
removeScale()
Removes the
scale attribute |
Column<T> |
removeTable()
Removes the
table attribute |
Column<T> |
removeUnique()
Removes the
unique attribute |
Column<T> |
removeUpdatable()
Removes the
updatable attribute |
Column<T> |
scale(Integer scale)
Sets the
scale attribute |
Column<T> |
table(String table)
Sets the
table attribute |
Column<T> |
unique(Boolean unique)
Sets the
unique attribute |
Column<T> |
updatable(Boolean updatable)
Sets the
updatable attribute |
Column<T> name(String name)
name
attributename
- the value for the attribute name
Column
String getName()
name
attributename
Column<T> removeName()
name
attributeColumn
Column<T> unique(Boolean unique)
unique
attributeunique
- the value for the attribute unique
Column
Boolean isUnique()
unique
attributeunique
Column<T> removeUnique()
unique
attributeColumn
Column<T> nullable(Boolean nullable)
nullable
attributenullable
- the value for the attribute nullable
Column
Boolean isNullable()
nullable
attributenullable
Column<T> removeNullable()
nullable
attributeColumn
Column<T> insertable(Boolean insertable)
insertable
attributeinsertable
- the value for the attribute insertable
Column
Boolean isInsertable()
insertable
attributeinsertable
Column<T> removeInsertable()
insertable
attributeColumn
Column<T> updatable(Boolean updatable)
updatable
attributeupdatable
- the value for the attribute updatable
Column
Boolean isUpdatable()
updatable
attributeupdatable
Column<T> removeUpdatable()
updatable
attributeColumn
Column<T> columnDefinition(String columnDefinition)
column-definition
attributecolumnDefinition
- the value for the attribute column-definition
Column
String getColumnDefinition()
column-definition
attributecolumn-definition
Column<T> removeColumnDefinition()
column-definition
attributeColumn
Column<T> table(String table)
table
attributetable
- the value for the attribute table
Column
String getTable()
table
attributetable
Column<T> removeTable()
table
attributeColumn
Column<T> length(Integer length)
length
attributelength
- the value for the attribute length
Column
Integer getLength()
length
attributelength
Column<T> removeLength()
length
attributeColumn
Column<T> precision(Integer precision)
precision
attributeprecision
- the value for the attribute precision
Column
Integer getPrecision()
precision
attributeprecision
Column<T> removePrecision()
precision
attributeColumn
Column<T> scale(Integer scale)
scale
attributescale
- the value for the attribute scale
Column
Integer getScale()
scale
attributescale
Copyright © 2021 JBoss by Red Hat. All rights reserved.