@Target(value=FIELD)
@Retention(value=CLASS)
public @interface Check
An annotation that indicates a member should define its SQLite column using the CHECK constraint. Must be used in
conjunction with Column.
http://www.sqlite.org/lang_createtable.html#ckconst http://www.sqlite.org/syntaxdiagrams.html#column-constraint
| Modifier and Type | Required Element and Description |
|---|---|
java.lang.String |
value
Returns a constraint violation expression to validate inserts or updates.
|