AttributeType enum

Explicit data types for use in "attributes" parameters.

See also AttributeMap.

Inheritance
Available extensions

Values

variant → const AttributeType

Any type other than the explicit number types.

uint8 → const AttributeType

An int treated as an 8 bit unsigned integer.

int8 → const AttributeType

An int treated as an 8 bit signed integer.

uint16 → const AttributeType

An int treated as a 16 bit unsigned integer.

int16 → const AttributeType

An int treated as a 16 bit signed integer.

uint32 → const AttributeType

An int treated as a 32 bit unsigned integer.

int32 → const AttributeType

An int treated as a 32 bit signed integer.

uint64 → const AttributeType

An int treated as a 64 bit unsigned integer.

int64 → const AttributeType

An int treated as a 64 bit signed integer.

float32 → const AttributeType

A double treated as a 32 bit floating point number.

float64 → const AttributeType

A double treated as a 64 bit floating point number.

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