EventImportance

enum EventImportance : Enum


The Event importance as reported. These are mapped to Matter event priorities but contain additional levels.

Summary

Enum Values

DEBUG

Corresponds to the Matter event Debug priority.

INFO

Does not correspond to a Matter event priority.

PRODUCTION_CRITICAL

Corresponds to the Matter event Critical priority.

PRODUCTION_STANDARD

Corresponds to the Matter event Info priority.

UNRECOGNIZED

The Event importance is not recognized.

Public functions

EventImportance
valueOf(value: String)

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

Array<EventImportance>

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

Enum Values

DEBUG

val EventImportance.DEBUGEventImportance

Corresponds to the Matter event Debug priority.

INFO

val EventImportance.INFOEventImportance

Does not correspond to a Matter event priority.

PRODUCTION_CRITICAL

val EventImportance.PRODUCTION_CRITICALEventImportance

Corresponds to the Matter event Critical priority.

PRODUCTION_STANDARD

val EventImportance.PRODUCTION_STANDARDEventImportance

Corresponds to the Matter event Info priority.

UNRECOGNIZED

val EventImportance.UNRECOGNIZEDEventImportance

The Event importance is not recognized.

Public functions

valueOf

fun valueOf(value: String): EventImportance

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<EventImportance>

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.