RealmUUID

interface RealmUUID

A class that represents an immutable universally unique identifier (UUID). A UUID represents a 128-bit value.

UUIDs created with RealmUUID conforms to RFC 4122 version 4 and are created with random bytes.

Types

Companion
Link copied to clipboard
object Companion

Functions

equals
Link copied to clipboard
abstract operator override fun equals(other: Any?): Boolean
Two UUIDs are equal if they contain the same value, bit for bit.
toString
Link copied to clipboard
abstract override fun toString(): String
Returns a string that represents the UUID.

Properties

bytes
Link copied to clipboard
abstract val bytes: ByteArray
The UUID represented as a 16 byte array.