enum

Matter::Cluster::Definitions::OtaSoftwareUpdateRequestor::ChangeReason

Inherits Enum < Comparable < Value < Object

This value shall indicate that the reason for a state change is unknown.

Constants

Unknown = 0_u8

The reason for a state change is unknown.

Success = 1_u8

The reason for a state change is the success of a prior operation.

Failure = 2_u8

The reason for a state change is the failure of a prior operation.

TimeOut = 3_u8

The reason for a state change is a time-out.

DelayByProvider = 4_u8

The reason for a state change is a request by the OTA Provider to wait.

Instance methods

delay_by_provider?

Returns true if this enum value equals DelayByProvider

Source
failure?

Returns true if this enum value equals Failure

Source
success?

Returns true if this enum value equals Success

Source
time_out?

Returns true if this enum value equals TimeOut

Source
unknown?

Returns true if this enum value equals Unknown

Source