class documentation

class Keyword(str, Enum): (source)

View In Hierarchy

The reserved keywords of the J.2 query syntax.

Constant AND Logical AND keyword.
Constant EQ Equal comparison keyword.
Constant GE Greater than or equal comparison keyword.
Constant GT Greater than comparison keyword.
Constant LE Less than or equal comparison keyword.
Constant LT Less than comparison keyword.
Constant MATCH String match comparison keyword.
Constant NE Not equal comparison keyword.
Constant OR Logical OR keyword.
AND: str = (source)

Logical AND keyword.

Value
'AND'

Equal comparison keyword.

Value
'EQ'

Greater than or equal comparison keyword.

Value
'GE'

Greater than comparison keyword.

Value
'GT'

Less than or equal comparison keyword.

Value
'LE'

Less than comparison keyword.

Value
'LT'
MATCH: str = (source)

String match comparison keyword.

Value
'MATCH'

Not equal comparison keyword.

Value
'NE'

Logical OR keyword.

Value
'OR'