FieldType enum

Enumerates the field types present in the payload.

Inheritance

Constructors

FieldType()
const

Values

unknown → const FieldType

Unknown type.

integer → const FieldType

Integer.

boolean → const FieldType

Boolean.

float → const FieldType

Float.

string → const FieldType

String.

binary → const FieldType

Binary.

date → const FieldType

Date.

timestamp → const FieldType

Value representing the number of seconds since 1970-01-01 00:00:00 UTC.

time → const FieldType

Time.

object → const FieldType

Object.

integerArray → const FieldType

Integer array.

booleanArray → const FieldType

Boolean array.

floatArray → const FieldType

Float array.

stringArray → const FieldType

String array.

binaryArray → const FieldType

Binary array.

dateArray → const FieldType

Date array.

timestampArray → const FieldType

Date array.

objectArray → const FieldType

Object array.

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<FieldType>
A constant List of the values in this enum, in order of their declaration.
[unknown, integer, boolean, float, string, binary, date, timestamp, time, object, integerArray, booleanArray, floatArray, stringArray, binaryArray, dateArray, timestampArray, objectArray]