Package | Description |
---|---|
org.axiondb.constraints |
Constraint implementations. |
org.axiondb.parser |
SQL parser interface and implementation classes.
|
Modifier and Type | Class and Description |
---|---|
class |
BaseSelectableBasedConstraint
Abstract base
SelectableBasedConstraint implementation. |
class |
NotNullConstraint
A NOT NULL constraint, which is violated whenever one or more of the specified
Selectable s is null . |
class |
NullConstraint
A NULL constraint, which is never violated but may be created and dropped.
|
class |
PrimaryKeyConstraint
A PRIMARY KEY constraint, which is violated whenever any of my
Selectable s are
null or my collection of Selectable s is not
unique . |
class |
UniqueConstraint
A UNIQUE constraint, which is violated when my collection of
Selectable s is
not unique within my table. |
Modifier and Type | Method and Description |
---|---|
SelectableBasedConstraint |
AxionSqlParser.SqlSelectableBasedConstraintType(java.lang.String constraintname) |
Modifier and Type | Method and Description |
---|---|
void |
AxionSqlParser.SqlSelectableBasedConstraintArgs(SelectableBasedConstraint constraint) |