Collate enum

At the time of comparison of two strings, in SQLite, it uses a collating sequence or collating function to understand which string is greater or whether the two strings are equal. SQLite has three built-in collating functions BINARY: Compares string data using memcmp(), regardless of text encoding.

NOCASE: It is almost same as binary, except the 26 upper case characters of ASCII are folded to their lower case equivalents before the comparison is performed.

RTRIM: The same as binary, except that trailing space characters, are ignored.

Inheritance

Constructors

Collate()
const

Values

BINARY → const Collate
NOCASE → const Collate
RTRIM → const Collate

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