public static enum DeliveryDTO.ModeEnum extends Enum<DeliveryDTO.ModeEnum>
| Modifier and Type | Class and Description |
|---|---|
static class |
DeliveryDTO.ModeEnum.Adapter |
| Enum Constant and Description |
|---|
FEDEX_2_DAY |
FEDEX_2_DAY_AM |
FEDEX_EXPRESS_SAVER |
FEDEX_GROUND |
FIRST_OVERNIGHT |
GROUND_HOME_DELIVERY |
INTERNATIONAL_ECONOMY |
INTERNATIONAL_FIRST |
INTERNATIONAL_PRIORITY |
PRIORITY_OVERNIGHT |
SMART_POST |
STANDARD_OVERNIGHT |
| Modifier and Type | Method and Description |
|---|---|
static DeliveryDTO.ModeEnum |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static DeliveryDTO.ModeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeliveryDTO.ModeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeliveryDTO.ModeEnum FEDEX_GROUND
public static final DeliveryDTO.ModeEnum FEDEX_2_DAY
public static final DeliveryDTO.ModeEnum FEDEX_2_DAY_AM
public static final DeliveryDTO.ModeEnum FEDEX_EXPRESS_SAVER
public static final DeliveryDTO.ModeEnum STANDARD_OVERNIGHT
public static final DeliveryDTO.ModeEnum FIRST_OVERNIGHT
public static final DeliveryDTO.ModeEnum PRIORITY_OVERNIGHT
public static final DeliveryDTO.ModeEnum INTERNATIONAL_ECONOMY
public static final DeliveryDTO.ModeEnum INTERNATIONAL_FIRST
public static final DeliveryDTO.ModeEnum INTERNATIONAL_PRIORITY
public static final DeliveryDTO.ModeEnum GROUND_HOME_DELIVERY
public static final DeliveryDTO.ModeEnum SMART_POST
public static DeliveryDTO.ModeEnum[] values()
for (DeliveryDTO.ModeEnum c : DeliveryDTO.ModeEnum.values()) System.out.println(c);
public static DeliveryDTO.ModeEnum 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 String getValue()
public String toString()
toString in class Enum<DeliveryDTO.ModeEnum>public static DeliveryDTO.ModeEnum fromValue(String text)
Copyright © 2018. All rights reserved.