public static enum Address.DeliveryLikelihoodLevel extends Enum<Address.DeliveryLikelihoodLevel>
| Modifier and Type | Method and Description |
|---|---|
static Address.DeliveryLikelihoodLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Address.DeliveryLikelihoodLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Address.DeliveryLikelihoodLevel HIGHT
public static final Address.DeliveryLikelihoodLevel MEDIUM
public static final Address.DeliveryLikelihoodLevel LOW
public static Address.DeliveryLikelihoodLevel[] values()
for (Address.DeliveryLikelihoodLevel c : Address.DeliveryLikelihoodLevel.values()) System.out.println(c);
public static Address.DeliveryLikelihoodLevel 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 nullCopyright © 2016. All rights reserved.