QueryOp enum

Inheritance
Available extensions

Values

eq → const QueryOp
const QueryOp(op: "eq", label: "=")
ne → const QueryOp
const QueryOp(op: "ne", label: "≠")
ge → const QueryOp
const QueryOp(op: "ge", label: "≥")
le → const QueryOp
const QueryOp(op: "le", label: "≤")
gt → const QueryOp
const QueryOp(op: "gt", label: ">")
lt → const QueryOp
const QueryOp(op: "lt", label: "<")
bit → const QueryOp
const QueryOp(op: "bit", label: "拥有标识")
start → const QueryOp
const QueryOp(op: "start", label: "开始于")
end → const QueryOp
const QueryOp(op: "end", label: "结束于")
contain → const QueryOp
const QueryOp(op: "contain", label: "包含")
nul → const QueryOp
const QueryOp(op: "nul", label: "是空", argCount: 0)
inset → const QueryOp
const QueryOp(op: "in", label: "集合", argCount: 2)

Properties

argCount int
final
hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
label String
final
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
op String
final
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<QueryOp>
A constant List of the values in this enum, in order of their declaration.