public enum ZendriveDirectionOfImpact extends Enum<ZendriveDirectionOfImpact> implements ZendriveValueEnum
Enum Constant and Description |
---|
BROADSIDE
Indicates that the direction of impact is broadside.
|
FRONT
Indicates that the direction of impact is front.
|
REAR
Indicates that the direction of impact is rear.
|
UNKNOWN
Indicates that the direction of impact is unknown.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue()
Provides a value for each enum value that is stable across releases.
|
static ZendriveDirectionOfImpact |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ZendriveDirectionOfImpact[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ZendriveDirectionOfImpact UNKNOWN
public static final ZendriveDirectionOfImpact FRONT
public static final ZendriveDirectionOfImpact REAR
public static final ZendriveDirectionOfImpact BROADSIDE
public static ZendriveDirectionOfImpact[] values()
for (ZendriveDirectionOfImpact c : ZendriveDirectionOfImpact.values()) System.out.println(c);
public static ZendriveDirectionOfImpact 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()
ZendriveValueEnum
The value is consistent with the enum values returned by the iOS SDK.
getValue
in interface ZendriveValueEnum