ToggleableState


Enum that represents possible toggleable states.

Summary

Enum Values

Indeterminate

State that means that on/off value of a component cannot be determined

Off

State that means a component is off

On

State that means a component is on

Public functions

ToggleableState
valueOf(value: String)

Returns the enum constant of this type with the specified name.

Cmn
Array<ToggleableState>

Returns an array containing the constants of this enum type, in the order they're declared.

Cmn

Enum Values

Indeterminate

val ToggleableState.IndeterminateToggleableState

State that means that on/off value of a component cannot be determined

Off

val ToggleableState.OffToggleableState

State that means a component is off

On

val ToggleableState.OnToggleableState

State that means a component is on

Public functions

valueOf

fun valueOf(value: String): ToggleableState

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws
kotlin.IllegalArgumentException

if this enum type has no constant with the specified name

values

fun values(): Array<ToggleableState>

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.