SqlOperator enum

运算符 描述 实例 == 检查两个操作数的值是否相等,如果相等则条件为真。 (a == b) 不为真。 = 检查两个操作数的值是否相等,如果相等则条件为真。 (a = b) 不为真。 != 检查两个操作数的值是否相等,如果不相等则条件为真。 (a != b) 为真。 <> 检查两个操作数的值是否相等,如果不相等则条件为真。 (a <> b) 为真。

      检查左操作数的值是否大于右操作数的值,如果是则条件为真。	      (a > b) 不为真。

< 检查左操作数的值是否小于右操作数的值,如果是则条件为真。 (a < b) 为真。 = 检查左操作数的值是否大于等于右操作数的值,如果是则条件为真。 (a >= b) 不为真。 <= 检查左操作数的值是否小于等于右操作数的值,如果是则条件为真。 (a <= b) 为真。 !< 检查左操作数的值是否不小于右操作数的值,如果是则条件为真。 (a !< b) 为假。 !> 检查左操作数的值是否不大于右操作数的值,如果是则条件为真。 (a !> b) 为真。

Inheritance
Available extensions

Values

eq → const SqlOperator

检查两个操作数的值是否相等,如果相等则条件为真

ne → const SqlOperator

检查两个操作数的值是否相等,如果不相等则条件为真

gt → const SqlOperator

检查左操作数的值是否大于右操作数的值,如果是则条件为真

lt → const SqlOperator

检查左操作数的值是否小于右操作数的值,如果是则条件为真

ge → const SqlOperator

检查左操作数的值是否大于等于右操作数的值,如果是则条件为真

le → const SqlOperator

检查左操作数的值是否小于等于右操作数的值,如果是则条件为真

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