org.apache.ws.jaxme.sqls

Interface BooleanConstraint.Type

Known Implementing Classes:
BooleanConstraintImpl.TypeImpl

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.

Field Details

BETWEEN

public static final BooleanConstraint.Type BETWEEN
A boolean constraint matching the "BETWEEN" condition.

EQ

public static final BooleanConstraint.Type EQ
A boolean constraint matching the "equal" condition.

EXISTS

public static final BooleanConstraint.Type EXISTS
A boolean constraint matching the "EXISTS" condition.

GE

public static final BooleanConstraint.Type GE
A boolean constraint matching the "greater or equal" condition.

GT

public static final BooleanConstraint.Type GT
A boolean constraint matching the "greater than" condition.

IN

public static final BooleanConstraint.Type IN
A boolean constraint matching the "IN" condition.

ISNULL

public static final BooleanConstraint.Type ISNULL
A boolean constraint matching the "IS NULL" condition.

LE

public static final BooleanConstraint.Type LE
A boolean constraint matching the "lower or equal" condition.

LIKE

public static final BooleanConstraint.Type LIKE
A boolean constraint matching the "LIKE" condition.

LT

public static final BooleanConstraint.Type LT
A boolean constraint matching the "lower than" condition.

NE

public static final BooleanConstraint.Type NE
A boolean constraint matching the "not equal" condition.