FilterStatement<T extends Filter, K> class abstract

Implementers

Properties

hashCode int
The hash code for this object.
no setterinherited
not → K
Applies the NOT operator
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

between(String from, String to) → T
Checks whether the column value lies BETWEEN from and to.
equals(String equalTo) → T
Checks equality between the column value and equalTo value
greaterThan(String value) → T
Checks whether the value of the column is greater than value
greaterThanOrEqualTo(String value) → T
Checks whether the value of the column is greater than or equal to value
inValues(List<String> values) → T
Checks whether the column value is in the provided list of values
lessThan(String value) → T
Checks whether the value of the column is less than value
lessThanOrEqualTo(String value) → T
Checks whether the value of the column is less than or equal to value
like(String value) → T
Checks whether the column value is LIKE the provided string value
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
notEqualTo(String value) → T
Checks for inequality between the column value and value
toString() String
A string representation of this object.
inherited

Operators

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