DocumentFieldCondition enum

A document field specification for querying.

Inheritance
Available extensions

Values

isEqualTo → const DocumentFieldCondition

Condition that will be used to check if field value matches the database value.

isGreaterThan → const DocumentFieldCondition

Condition that will be used to check if field value is greater than the database value.

isGreaterThanOrEqualTo → const DocumentFieldCondition

Condition that will be used to check if field value is greater than or equals to the database value.

isLessThan → const DocumentFieldCondition

Condition that will be used to check if field value is less than the database value.

isLessThanOrEqualTo → const DocumentFieldCondition

Condition that will be used to check if field value is less than or equals to the database value.

isNotEqualTo → const DocumentFieldCondition

Condition that will be used to check if field value is not equals to the database value.

whereIn → const DocumentFieldCondition

Condition that will be used to check if the field matches any of the comparison values.

arrayContains → const DocumentFieldCondition

Condition that will be used to check if the array contains the specified value.

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<DocumentFieldCondition>
A constant List of the values in this enum, in order of their declaration.