FilterType enum

Determines the type of the filter condition which should be compared between rows.

Inheritance

Constructors

FilterType()
const

Values

contains → const FilterType

Checks whether the cell value contain the given filter value.

endsWith → const FilterType

Checks whether the cell value ends with the given filter value.

equals → const FilterType

Checks whether the cell value is equivalent to the given filter value.

greaterThan → const FilterType

Checks whether the cell value is greater than the given filter value.

greaterThanOrEqual → const FilterType

Checks whether the cell value is greater than or equal to the given filter value.

lessThan → const FilterType

Checks whether the cell value is lesser than the given filter value.

lessThanOrEqual → const FilterType

Checks whether the cell value is lesser than or equal to the given filter value.

doesNotContain → const FilterType

Checks whether the cell value does not contain the given filter value.

doesNotEndsWith → const FilterType

Checks whether the cell value does not end with the given filter value.

notEqual → const FilterType

Checks whether the cell value is not equivalent to the given filter value.

doesNotBeginWith → const FilterType

Checks whether the cell value does not begin with the given filter value.

beginsWith → const FilterType

Checks whether the cell value begins with the given filter 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<FilterType>
A constant List of the values in this enum, in order of their declaration.