ActionParameters.Key


class ActionParameters.Key<T : Any>


Key for ActionParameters values. Type T is the type of the associated value. The Key.name must be unique, keys with the same name are considered equal.

Summary

Public constructors

<T : Any> Key(name: String)

Public functions

open operator Boolean
equals(other: Any?)
open Int
infix ActionParameters.Pair<T>
to(value: T)

Infix function to create a Parameters.Pair.

open String

Public properties

String

Public constructors

Key

<T : Any> Key(name: String)

Public functions

equals

open operator fun equals(other: Any?): Boolean

hashCode

open fun hashCode(): Int

to

Added in 1.0.0
infix fun to(value: T): ActionParameters.Pair<T>

Infix function to create a Parameters.Pair.

Parameters
value: T

the value this key should point to

toString

open fun toString(): String

Public properties

name

Added in 1.0.0
val nameString