org.apache.ws.jaxme.sqls

Interface BooleanConstraint.Type

public static interface BooleanConstraint.Type

The type of a boolean constraint.

Field Summary
static BooleanConstraint.TypeBETWEEN
A boolean constraint matching the "BETWEEN" condition.
static BooleanConstraint.TypeEQ
A boolean constraint matching the "equal" condition.
static BooleanConstraint.TypeEXISTS
A boolean constraint matching the "EXISTS" condition.
static BooleanConstraint.TypeGE
A boolean constraint matching the "greater or equal" condition.
static BooleanConstraint.TypeGT
A boolean constraint matching the "greater than" condition.
static BooleanConstraint.TypeIN
A boolean constraint matching the "IN" condition.
static BooleanConstraint.TypeISNULL
A boolean constraint matching the "IS NULL" condition.
static BooleanConstraint.TypeLE
A boolean constraint matching the "lower or equal" condition.
static BooleanConstraint.TypeLIKE
A boolean constraint matching the "LIKE" condition.
static BooleanConstraint.TypeLT
A boolean constraint matching the "lower than" condition.
static BooleanConstraint.TypeNE
A boolean constraint matching the "not equal" condition.

Field Detail

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.