UUID

Overview

The UUID object provides utilities for working with universally unique identifiers (UUIDs). It supports operations to retrieve the byte array or string representation of a UUID.

Methods Summarized

Type
Name
Summary

Get the byte array representation of the UUID.

Get the string representation of the UUID.

Methods Detailed

toBytes()

Get the byte array representation of the UUID.

Returns: Array the byte array representation of the UUID.

Sample

uuid.toBytes();

toString()

Get the string representation of the UUID.

Returns: String the string representation of the UUID.

Sample

uuid.toString();

Last updated