QueryOperator enum
Query operators for filtering data
Values
- isEqualTo → const QueryOperator
-
Equal to (==)
- isNotEqualTo → const QueryOperator
-
Not equal to (!=)
- isGreaterThan → const QueryOperator
-
Greater than (>)
- isGreaterThanOrEqualTo → const QueryOperator
-
Greater than or equal to (>=)
- isLessThan → const QueryOperator
-
Less than (<)
- isLessThanOrEqualTo → const QueryOperator
-
Less than or equal to (<=)
- startsWith → const QueryOperator
-
String starts with
- endsWith → const QueryOperator
-
String ends with
- contains → const QueryOperator
-
String contains
- arrayContains → const QueryOperator
-
Array contains value
- arrayContainsAny → const QueryOperator
-
Array contains any of values
- whereIn → const QueryOperator
-
Value in list
- whereNotIn → const QueryOperator
-
Value not in list
- isNull → const QueryOperator
-
Field is null
- isNotNull → const QueryOperator
-
Field is not null
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - 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<
QueryOperator> - A constant List of the values in this enum, in order of their declaration.