@Target(value=METHOD) @Retention(value=RUNTIME) public @interface Column
| Modifier and Type | Required Element and Description |
|---|---|
String |
value
Name of the column.
|
| Modifier and Type | Optional Element and Description |
|---|---|
boolean |
insertable
Optional, the column is included in SQL INSERT statements.
|
int |
length
(Optional) The column length.
|
boolean |
nullable
Optional, this column is nullable.
|
boolean |
updatable
Optional,the column is included in SQL UPDATE statement.
|
public abstract String value
public abstract boolean nullable
public abstract boolean insertable
Copyright © 2019. All rights reserved.