@groovy.transform.AutoClone @groovy.transform.CompileStatic @groovy.transform.builder.Builder(builderStrategy: SimpleStrategy, prefix: ) class ColumnConfig extends java.lang.Object
Defines a column within the mapping.
Type | Name and description |
---|---|
java.lang.String |
comment A comment to apply to the column |
java.lang.String |
defaultValue The default value |
java.lang.String |
enumType The enum type |
java.lang.Object |
index The index, can be either a boolean or a string for the name of the index |
int |
length The length of the column |
java.lang.String |
name The column name |
int |
precision The precision of the column |
java.lang.String |
read A custom read string |
int |
scale The scale of the column |
java.lang.String |
sqlType The SQL type |
boolean |
unique Whether the column is unique |
java.lang.String |
write A custom write sstring |
Constructor and description |
---|
ColumnConfig() |
Type Params | Return Type | Name and description |
---|---|---|
|
static ColumnConfig |
configureExisting(ColumnConfig property, groovy.lang.Closure config) Configures an existing PropertyConfig instance |
|
static ColumnConfig |
configureExisting(ColumnConfig column, java.util.Map config) Configures an existing PropertyConfig instance |
|
static ColumnConfig |
configureNew(groovy.lang.Closure config) Configures a new PropertyConfig instance |
|
static ColumnConfig |
configureNew(java.util.Map config) Configures a new PropertyConfig instance |
|
java.lang.String |
toString() |
Methods inherited from class | Name |
---|---|
class java.lang.Object |
java.lang.Object#wait(long, int), java.lang.Object#wait(), java.lang.Object#wait(long), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
A comment to apply to the column
The default value
The enum type
The index, can be either a boolean or a string for the name of the index
The length of the column
The column name
The precision of the column
A custom read string
The scale of the column
The SQL type
Whether the column is unique
A custom write sstring
Configures an existing PropertyConfig instance
config
- The configurationConfigures an existing PropertyConfig instance
config
- The configurationConfigures a new PropertyConfig instance
config
- The configurationConfigures a new PropertyConfig instance
config
- The configurationGroovy Documentation