# FilterBinaryOperator

## Enum Definition

```python
from enum import Enum

class FilterBinaryOperator(Enum):
    """Represents the different binary operators used in filtering procedures."""
    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

<table><thead><tr><th width="239.0078125">Member</th><th width="120.53125">Value</th><th>Description</th></tr></thead><tbody><tr><td><code>AND</code></td><td><code>0</code></td><td>Logical AND operator, used to combine conditions.</td></tr><tr><td><code>OR</code></td><td><code>1</code></td><td>Logical OR operator, used to combine alternative conditions.</td></tr><tr><td><code>EQUALS</code></td><td><code>2</code></td><td>Tests if two values are equal.</td></tr><tr><td><code>NOT_EQUALS</code></td><td><code>3</code></td><td>Tests if two values are not equal.</td></tr><tr><td><code>IN</code></td><td><code>4</code></td><td>Tests if a value is within a specified list or range.</td></tr><tr><td><code>HAS</code></td><td><code>5</code></td><td>Tests if a collection contains a specific element.</td></tr><tr><td><code>LESS_THAN</code></td><td><code>6</code></td><td>Tests if one value is less than another.</td></tr><tr><td><code>GREATER_THAN</code></td><td><code>7</code></td><td>Tests if one value is greater than another.</td></tr><tr><td><code>LESS_THAN_OR_EQUAL</code></td><td><code>8</code></td><td>Tests if one value is less than or equal to another.</td></tr><tr><td><code>GREATER_THAN_OR_EQUAL</code></td><td><code>9</code></td><td>Tests if one value is greater than or equal to another.</td></tr></tbody></table>
