CommandType enum

All sql commands.

Inheritance

Constructors

CommandType()
const

Values

insert → const CommandType

insert.

delete → const CommandType

delete.

update → const CommandType

update.

select → const CommandType

select.

move → const CommandType

move.

fetch → const CommandType

fetch.

copy → const CommandType

copy.

Properties

hashCode int
The hash code for this object.
read-onlyinherited
index int
A numeric identifier for the enumerated value.
read-onlyinherited
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited

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

Static Methods

parse(String string) CommandType
Parses a string containing an CommandType literal into its instance.

Constants

values → const List<CommandType>
A constant List of the values in this enum, in order of their declaration.
[insert, delete, update, select, move, fetch, copy]