public enum ZendriveEventSeverity extends java.lang.Enum<ZendriveEventSeverity>
Enum Constant and Description |
---|
HIGH
Indicates that the event has high severity.
|
LOW
Indicates that the event has low severity.
|
NOT_AVAILABLE
Indicates that the severity is not available.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue()
Provides a value for each enum value that is stable across releases.
|
static ZendriveEventSeverity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ZendriveEventSeverity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ZendriveEventSeverity NOT_AVAILABLE
public static final ZendriveEventSeverity LOW
public static final ZendriveEventSeverity HIGH
public static ZendriveEventSeverity[] values()
for (ZendriveEventSeverity c : ZendriveEventSeverity.values()) System.out.println(c);
public static ZendriveEventSeverity valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getValue()