public enum ZendriveAccidentConfidence extends java.lang.Enum<ZendriveAccidentConfidence>
AccidentInfo
for details.Enum Constant and Description |
---|
HIGH
Accident was detected with a high confidence.
|
LOW
Accident was detected with a low confidence.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue()
Provides a value for each enum value that is stable across releases.
|
static ZendriveAccidentConfidence |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ZendriveAccidentConfidence[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ZendriveAccidentConfidence HIGH
public static final ZendriveAccidentConfidence LOW
public static ZendriveAccidentConfidence[] values()
for (ZendriveAccidentConfidence c : ZendriveAccidentConfidence.values()) System.out.println(c);
public static ZendriveAccidentConfidence 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()