public enum ZendriveCollisionSeverity extends Enum<ZendriveCollisionSeverity> implements ZendriveValueEnum
| Enum Constant and Description | 
|---|
HIGH
Indicates that the collision has high severity. 
 | 
LOW
Indicates that the collision has low severity. 
 | 
UNKNOWN
Indicates that the severity is unknown. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
int | 
getValue()
Provides a value for each enum value that is stable across releases. 
 | 
static ZendriveCollisionSeverity | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static ZendriveCollisionSeverity[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ZendriveCollisionSeverity UNKNOWN
public static final ZendriveCollisionSeverity LOW
public static final ZendriveCollisionSeverity HIGH
public static ZendriveCollisionSeverity[] values()
for (ZendriveCollisionSeverity c : ZendriveCollisionSeverity.values()) System.out.println(c);
public static ZendriveCollisionSeverity 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