Claim

open class Claim(val name: ModuleClaimName, val value: ClaimValue)

A tuple consisting of a name and a value.

Each Claim is basically a pair of a ModuleClaimName a ClaimValue.

Constructors

Link copied to clipboard
fun Claim(name: ModuleClaimName, value: ClaimValue)

Functions

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

Two claims are considered equal if both ModuleClaimName and ClaimValue match.

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

Hashcode of a claim using its ModuleClaimName and ClaimValue.

Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard
val name: ModuleClaimName
Link copied to clipboard
val value: ClaimValue