|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use BinaryPredicate | |
|---|---|
| org.sql.generation.api.grammar.booleans | This package provides interfaces for syntax elements of boolean expressions in SQL language. |
| Uses of BinaryPredicate in org.sql.generation.api.grammar.booleans |
|---|
| Subinterfaces of BinaryPredicate in org.sql.generation.api.grammar.booleans | |
|---|---|
interface |
EqualsPredicate
The interface for syntax element representing equality test (x = y). |
interface |
GreaterOrEqualPredicate
The interface for syntax element representing the test of left value being greater than, or equal to right value (x >= y). |
interface |
GreaterThanPredicate
The interface for syntax element representing the test of left value being greater than right value (x > y). |
interface |
LessOrEqualPredicate
The interface for syntax element representing the test of left value being lesser than, or equal to right value (x <= y). |
interface |
LessThanPredicate
The interface for syntax element representing the test of left value being less than right value (x < y). |
interface |
LikePredicate
The interface for syntax element representing the test of left expression matching the supplied pattern using basic SQL match (x LIKE y). |
interface |
NotEqualsPredicate
The interface for syntax element representing inequality test (x <> y). |
interface |
NotLikePredicate
The interface for syntax element representing the test of left expression not matching the supplied pattern using basic SQL match (x NOT LIKE y). |
interface |
NotRegexpPredicate
The interface for syntax element representing the test of left expression not matching the supplied pattern using advanced regular expression match (operator varies). |
interface |
RegexpPredicate
The interface for syntax element representing the test of left expression matching the supplied pattern using advanced regular expression match (operator varies). |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||