Compare enum

Specify how to evalute the value against the evaluatedField in a WhereCondition. For size operators, a left side comparison is done.

For example, lessThan would produce evaluatedField < value

Inheritance

Constructors

Compare()
const

Values

exact → const Compare

The query value matches the field value.

between → const Compare

The field value is between the query values. The query value must be an ordered collection.

contains → const Compare

The query value exists within the field value.

doesNotContain → const Compare

The query value does not exist within the field value.

lessThan → const Compare

The query value is less than the field value.

lessThanOrEqualTo → const Compare

The query value is less than or equal to the field value.

greaterThan → const Compare

The query value is greater than the field value.

greaterThanOrEqualTo → const Compare

The query value is greater than or equal to the field value.

notEqual → const Compare

The query value does not match the field value.

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