Class BooleanConstraintImpl.BooleanConstraint
- java.lang.Object
-
- de.businesscode.bcdui.binding.rel.impl.BooleanConstraintImpl.BooleanConstraint
-
- All Implemented Interfaces:
AbstractConstrain.Type
- Direct Known Subclasses:
IsLikeConstraintImpl.BooleanConstraint
- Enclosing class:
- BooleanConstraintImpl
public static class BooleanConstraintImpl.BooleanConstraint extends java.lang.Object implements AbstractConstrain.Type
-
-
Field Summary
Fields Modifier and Type Field Description static AbstractConstrain.Type
EQ
static AbstractConstrain.Type
GE
A boolean constraint matching the "greater or equal" condition.static AbstractConstrain.Type
GT
A boolean constraint matching the "greater than" condition.static AbstractConstrain.Type
ISNOTNULL
static AbstractConstrain.Type
ISNULL
A boolean constraint matching the "IS NULL" condition.static AbstractConstrain.Type
LE
A boolean constraint matching the "lower or equal" condition.static AbstractConstrain.Type
LT
A boolean constraint matching the "lower than" condition.static AbstractConstrain.Type
NEQ
A boolean constraint matching the "not equal" condition.
-
Constructor Summary
Constructors Constructor Description BooleanConstraint(java.lang.String pType)
Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
java.lang.String
toString()
-
-
-
Field Detail
-
EQ
public static final AbstractConstrain.Type EQ
-
NEQ
public static final AbstractConstrain.Type NEQ
A boolean constraint matching the "not equal" condition.
-
ISNULL
public static final AbstractConstrain.Type ISNULL
A boolean constraint matching the "IS NULL" condition.
-
ISNOTNULL
public static final AbstractConstrain.Type ISNOTNULL
-
LT
public static final AbstractConstrain.Type LT
A boolean constraint matching the "lower than" condition.
-
GT
public static final AbstractConstrain.Type GT
A boolean constraint matching the "greater than" condition.
-
LE
public static final AbstractConstrain.Type LE
A boolean constraint matching the "lower or equal" condition.
-
GE
public static final AbstractConstrain.Type GE
A boolean constraint matching the "greater or equal" condition.
-
-
Method Detail
-
getName
public java.lang.String getName()
- Specified by:
getName
in interfaceAbstractConstrain.Type
-
toString
public java.lang.String toString()
- Specified by:
toString
in interfaceAbstractConstrain.Type
- Overrides:
toString
in classjava.lang.Object
-
-