enum

Matter::Cluster::Definitions::Action::State

Inherits Enum < Comparable < Value < Object

Note that some of these states are applicable only for certain actions, as determined by their SupportedCommands.

Constants

Inactive = 0_u8

The action is not active

Active = 1_u8

The action is active

Paused = 2_u8

The action has been paused

Disabled = 3_u8

The action has been disabled

Instance methods

active?

Returns true if this enum value equals Active

Source
disabled?

Returns true if this enum value equals Disabled

Source
inactive?

Returns true if this enum value equals Inactive

Source
paused?

Returns true if this enum value equals Paused

Source