PostgresChangeFilterType enum

Specifies the type of filter to be applied on realtime Postgres Change listener.

Inheritance

Constructors

PostgresChangeFilterType()
const

Values

eq → const PostgresChangeFilterType

Listens to changes where a column's value in a table equals a client-specified value.

neq → const PostgresChangeFilterType

Listens to changes where a column's value in a table does not equal a value specified.

lt → const PostgresChangeFilterType

Listen to changes where a column's value in a table is less than a value specified.

lte → const PostgresChangeFilterType

Listens to changes where a column's value in a table is less than or equal to a value specified.

gt → const PostgresChangeFilterType

Listens to changes where a column's value in a table is greater than a value specified.

gte → const PostgresChangeFilterType

Listens to changes where a column's value in a table is greater than or equal to a value specified.

inFilter → const PostgresChangeFilterType

Listen to changes when a column's value in a table equals any of the values specified.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<PostgresChangeFilterType>
A constant List of the values in this enum, in order of their declaration.