org.apache.ws.jaxme.sqls
public static interface BooleanConstraint.Type
The type of a boolean constraint.
Field Summary | |
---|---|
static BooleanConstraint.Type | BETWEEN A boolean constraint matching the "BETWEEN" condition. |
static BooleanConstraint.Type | EQ A boolean constraint matching the "equal" condition. |
static BooleanConstraint.Type | EXISTS A boolean constraint matching the "EXISTS" condition. |
static BooleanConstraint.Type | GE A boolean constraint matching the "greater or equal" condition. |
static BooleanConstraint.Type | GT A boolean constraint matching the "greater than" condition. |
static BooleanConstraint.Type | IN A boolean constraint matching the "IN" condition. |
static BooleanConstraint.Type | ISNULL A boolean constraint matching the "IS NULL" condition. |
static BooleanConstraint.Type | LE A boolean constraint matching the "lower or equal" condition. |
static BooleanConstraint.Type | LIKE A boolean constraint matching the "LIKE" condition. |
static BooleanConstraint.Type | LT A boolean constraint matching the "lower than" condition. |
static BooleanConstraint.Type | NE A boolean constraint matching the "not equal" condition. |