FilterBinaryOperator

Enum that defines operators for use with filter expressions.

Enum Definition

from enum import Enum

class FilterBinaryOperator(Enum):
    """Represents the different binary operators used in filtering operations."""
    AND = 0
    OR = 1
    EQUALS = 2
    NOT_EQUALS = 3
    IN = 4
    HAS = 5
    LESS_THAN = 6
    GREATER_THAN = 7
    LESS_THAN_OR_EQUAL = 8
    GREATER_THAN_OR_EQUAL = 9

Enum Members

MemberValueDescription
AND0Logical AND operator, used to combine conditions.
OR1Logical OR operator, used to combine alternative conditions.
EQUALS2Tests if two values are equal.
NOT_EQUALS3Tests if two values are not equal.
IN4Tests if a value is within a specified list or range.
HAS5Tests if a collection contains a specific element.
LESS_THAN6Tests if one value is less than another.
GREATER_THAN7Tests if one value is greater than another.
LESS_THAN_OR_EQUAL8Tests if one value is less than or equal to another.
GREATER_THAN_OR_EQUAL9Tests if one value is greater than or equal to another.

What’s Next