Actions.Command

enum Actions.Command : Enum


Descriptor enum for this trait's commands.

Summary

Public functions

Actions.Command
valueOf(value: String)

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

Array<Actions.Command>

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

Public properties

UInt

Enum Values

DisableAction

val Actions.Command.DisableActionActions.Command

The disableAction trait command.

DisableActionWithDuration

val Actions.Command.DisableActionWithDurationActions.Command

The disableActionWithDuration trait command.

EnableAction

val Actions.Command.EnableActionActions.Command

The enableAction trait command.

EnableActionWithDuration

val Actions.Command.EnableActionWithDurationActions.Command

The enableActionWithDuration trait command.

InstantAction

val Actions.Command.InstantActionActions.Command

The instantAction trait command.

InstantActionWithTransition

val Actions.Command.InstantActionWithTransitionActions.Command

The instantActionWithTransition trait command.

PauseAction

val Actions.Command.PauseActionActions.Command

The pauseAction trait command.

PauseActionWithDuration

val Actions.Command.PauseActionWithDurationActions.Command

The pauseActionWithDuration trait command.

ResumeAction

val Actions.Command.ResumeActionActions.Command

The resumeAction trait command.

StartAction

val Actions.Command.StartActionActions.Command

The startAction trait command.

StartActionWithDuration

val Actions.Command.StartActionWithDurationActions.Command

The startActionWithDuration trait command.

StopAction

val Actions.Command.StopActionActions.Command

The stopAction trait command.

Public functions

valueOf

fun valueOf(value: String): Actions.Command

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<Actions.Command>

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.

Public properties

tag

val tagUInt