RealmValueType enum

An enum describing the possible types that can be wrapped inside RealmValue

Inheritance

Constructors

RealmValueType()
const

Values

nullValue → const RealmValueType

The RealmValue represents null

boolean → const RealmValueType

The RealmValue represents a boolean value

string → const RealmValueType

The RealmValue represents a String value

int → const RealmValueType

The RealmValue represents an int value

double → const RealmValueType

The RealmValue represents a double value

object → const RealmValueType

The RealmValue represents a RealmObject instance value

objectId → const RealmValueType

The RealmValue represents an ObjectId value

dateTime → const RealmValueType

The RealmValue represents a DateTime value

decimal → const RealmValueType

The RealmValue represents a Decimal128 value

uuid → const RealmValueType

The RealmValue represents an Uuid value

binary → const RealmValueType

The RealmValue represents a binary (Uint8List) value

list → const RealmValueType

The RealmValue represents a List<RealmValue>

map → const RealmValueType

The RealmValue represents a Map<String, RealmValue>

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
isCollection bool
Returns true if the enum value represents a collection - i.e. it's list or map.
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<RealmValueType>
A constant List of the values in this enum, in order of their declaration.