class StateInfo


This class contains information about application state.

Summary

Public constructors

StateInfo(key: String, value: String)

Public functions

open operator Boolean
equals(other: Any?)
open Int
open String

Public properties

String

An arbitrary name used for this state, used as a key for storing the state value.

String

The value of this state.

Public constructors

StateInfo

Added in 1.0.0-beta01
StateInfo(key: String, value: String)

Public functions

equals

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

hashCode

open fun hashCode(): Int

toString

open fun toString(): String

Public properties

key

Added in 1.0.0-beta01
val keyString

An arbitrary name used for this state, used as a key for storing the state value.

value

Added in 1.0.0-beta01
val valueString

The value of this state.