public enum ZendriveEventSeverity extends Enum<ZendriveEventSeverity> implements ZendriveValueEnum
| 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(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(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int getValue()
ZendriveValueEnumThe value is consistent with the enum values returned by the iOS SDK.
getValue in interface ZendriveValueEnum