Uses of Interface
org.axiondb.SelectableBasedConstraint

Packages that use SelectableBasedConstraint
org.axiondb.constraints Constraint implementations. 
org.axiondb.parser SQL parser interface and implementation classes. 
 

Uses of SelectableBasedConstraint in org.axiondb.constraints
 

Classes in org.axiondb.constraints that implement SelectableBasedConstraint
 class BaseSelectableBasedConstraint
          Abstract base SelectableBasedConstraintimplementation.
 class NotNullConstraint
          A NOT NULL constraint, which is violated whenever one or more of the specified Selectables 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 Selectables are null or my collection of Selectables is not unique.
 class UniqueConstraint
          A UNIQUE constraint, which is violated when my collection of Selectables is not unique within my table.
 

Uses of SelectableBasedConstraint in org.axiondb.parser
 

Methods in org.axiondb.parser that return SelectableBasedConstraint
 SelectableBasedConstraint AxionSqlParser.SqlSelectableBasedConstraintType(java.lang.String constraintname)
           
 

Methods in org.axiondb.parser with parameters of type SelectableBasedConstraint
 void AxionSqlParser.SqlSelectableBasedConstraintArgs(SelectableBasedConstraint constraint)