Package | Description |
---|---|
net.akaish.kitty.orm.constraints.column | |
net.akaish.kitty.orm.constraints.table | |
net.akaish.kitty.orm.enums |
Constructor and Description |
---|
NotNullColumnConstraint(ConflictClauses onConflictAction) |
PrimaryKeyColumnConstraint(AscDesc ascDesc,
ConflictClauses conflictClause,
boolean autoincrement) |
Constructor and Description |
---|
PrimaryKeyTableConstraint(java.lang.String constraintName,
ConflictClauses conflictClauses,
java.lang.String... columns) |
UniqueTableConstraint(java.lang.String constraintName,
ConflictClauses conflictClauses,
java.lang.String... columns) |
Modifier and Type | Method and Description |
---|---|
static ConflictClauses |
ConflictClauses.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConflictClauses[] |
ConflictClauses.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|