enum

Matter::Cluster::Definitions::NetworkCommissioning::StatusCode

Inherits Enum < Comparable < Value < Object

Constants

Success = 0_u8

OK, no error

OutOfRange = 1_u8

Value Outside Range

BoundsExceeded = 2_u8

A collection would exceed its size limit

NetworkIdNotFound = 3_u8

The NetworkID is not among the collection of added networks

DuplicateNetworkId = 4_u8

The NetworkID is already among the collection of added networks

NetworkNotFound = 5_u8

Cannot find AP: SSID Not found

RegulatoryError = 6_u8

Cannot find AP: Mismatch on band/channels/regulatory domain / 2.4GHz vs 5GHz

AuthFailure = 7_u8

Cannot associate due to authentication failure

UnsupportedSecurity = 8_u8

Cannot associate due to unsupported security mode

OtherConnectionFailure = 9_u8

Other association failure

Ipv6Failed = 10_u8

Failure to generate an IPv6 address

IpBindFailed = 11_u8

Failure to bind Wi-Fi <-> IP interfaces

UnknownError = 12_u8

Unknown error

Instance methods

auth_failure?

Returns true if this enum value equals AuthFailure

Source
bounds_exceeded?

Returns true if this enum value equals BoundsExceeded

Source
duplicate_network_id?

Returns true if this enum value equals DuplicateNetworkId

Source
ip_bind_failed?

Returns true if this enum value equals IpBindFailed

Source
ipv6_failed?

Returns true if this enum value equals Ipv6Failed

Source
network_id_not_found?

Returns true if this enum value equals NetworkIdNotFound

Source
network_not_found?

Returns true if this enum value equals NetworkNotFound

Source
other_connection_failure?

Returns true if this enum value equals OtherConnectionFailure

Source
out_of_range?

Returns true if this enum value equals OutOfRange

Source
regulatory_error?

Returns true if this enum value equals RegulatoryError

Source
success?

Returns true if this enum value equals Success

Source
unknown_error?

Returns true if this enum value equals UnknownError

Source
unsupported_security?

Returns true if this enum value equals UnsupportedSecurity

Source