Enumeration that defines the classes of Boolean operators used in MobilityDB.
Enumerator |
---|
UNKNOWN_OP | |
EQ_OP | Equality = operator.
|
NE_OP | Distinct != operator.
|
LT_OP | Less than < operator.
|
LE_OP | Less than or equal to <= operator.
|
GT_OP | Greater than < operator.
|
GE_OP | Greater than or equal to >= operator.
|
ADJACENT_OP | Adjacent -|- operator.
|
UNION_OP | Union + operator.
|
MINUS_OP | Minus - operator.
|
INTERSECT_OP | Intersection * operator.
|
OVERLAPS_OP | Overlaps && operator.
|
CONTAINS_OP | Contains @> operator.
|
CONTAINED_OP | Contained <@ operator.
|
SAME_OP | Same ~= operator.
|
LEFT_OP | Left << operator.
|
OVERLEFT_OP | Overleft &< operator.
|
RIGHT_OP | Right >> operator.
|
OVERRIGHT_OP | Overright &> operator.
|
BELOW_OP | Below <<| operator.
|
OVERBELOW_OP | Overbelow &<| operator.
|
ABOVE_OP | Above |>> operator.
|
OVERABOVE_OP | Overbove |&> operator.
|
FRONT_OP | Front <</ operator.
|
OVERFRONT_OP | Overfront &</ operator.
|
BACK_OP | Back />> operator.
|
OVERBACK_OP | Overback /&> operator.
|
BEFORE_OP | Before <<# operator.
|
OVERBEFORE_OP | Overbefore &<# operator.
|
AFTER_OP | After #>> operator.
|
OVERAFTER_OP | Overafter #&> operator.
|
EVEREQ_OP | Evereq ?= operator.
|
EVERNE_OP | Everne ?<> operator.
|
EVERLT_OP | Everlt ?< operator.
|
EVERLE_OP | Everle ?<= operator.
|
EVERGT_OP | Evergt ?> operator.
|
EVERGE_OP | Everge ?>= operator.
|
ALWAYSEQ_OP | Alwayseq %= operator.
|
ALWAYSNE_OP | Alwaysne %<> operator.
|
ALWAYSLT_OP | Alwayslt %< operator.
|
ALWAYSLE_OP | Alwaysle %<= operator.
|
ALWAYSGT_OP | Alwaysgt %> operator.
|
ALWAYSGE_OP | Alwaysge %>= operator.
|