DataValue

data class DataValue(val value: ByteArray) : ClaimType(source)

Represents a data value with a byte array.

Constructors

Link copied to clipboard
constructor(value: ByteArray)

Creates a DataValue instance with the specified byte array value.

Properties

Link copied to clipboard

the byte array value of the data

Functions

Link copied to clipboard
open operator override fun compareTo(other: ClaimType): Int

Compares this ClaimType object with the specified other object for order.

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean

Compares this DataValue object with the specified object for equality. Returns true if the objects are the same, have the same runtime class, and their values are equal.

Link copied to clipboard
open override fun hashCode(): Int

Generates a hash code value for the DataValue object.