public enum ZendriveInsurancePeriod extends Enum<ZendriveInsurancePeriod>
ZendriveInsurance API.
Each drive belongs to exactly one of these periods.| Enum Constant and Description |
|---|
Period1
Value for drives detected in insurance period 1
|
Period2
Value for drives detected in insurance period 2
|
Period3
Value for drives detected in insurance period 3
|
| Modifier and Type | Method and Description |
|---|---|
static ZendriveInsurancePeriod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ZendriveInsurancePeriod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ZendriveInsurancePeriod Period1
public static final ZendriveInsurancePeriod Period2
public static final ZendriveInsurancePeriod Period3
public static ZendriveInsurancePeriod[] values()
for (ZendriveInsurancePeriod c : ZendriveInsurancePeriod.values()) System.out.println(c);
public static ZendriveInsurancePeriod 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 null