public enum FedExServiceType extends Enum<FedExServiceType>
| Modifier and Type | Method and Description |
|---|---|
static FedExServiceType |
getByFullName(String shippingMethod) |
static FedExServiceType[] |
getInternationalCodes() |
static FedExServiceType[] |
getNationalCodes() |
String |
getServiceCode() |
boolean |
isInternational() |
String |
toString() |
static FedExServiceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FedExServiceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FedExServiceType FedEx_Priority_Overnight
public static final FedExServiceType FedEx_Standard_Overnight
public static final FedExServiceType FedEx_2_Day
public static final FedExServiceType FedEx_First_Overnight
public static final FedExServiceType FedEx_Express_Saver
public static final FedExServiceType FedEx_Ground
public static final FedExServiceType FedEx_Ground_Home_Delivery
public static final FedExServiceType FedEx_1_Day_Freight
public static final FedExServiceType FedEx_2_Day_Freight
public static final FedExServiceType FedEx_3_Day_Freight
public static final FedExServiceType FedEx_International_Priority_Overnight
public static final FedExServiceType FedEx_International_First_Overnight
public static final FedExServiceType FedEx_International_Economy
public static final FedExServiceType FedEx_International_Priority_Freight
public static final FedExServiceType FedEx_International_Enconomy_Freight
public static FedExServiceType[] values()
for (FedExServiceType c : FedExServiceType.values()) System.out.println(c);
public static FedExServiceType 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 toString()
toString in class Enum<FedExServiceType>public boolean isInternational()
public static FedExServiceType[] getInternationalCodes()
public static FedExServiceType[] getNationalCodes()
public String getServiceCode()
public static FedExServiceType getByFullName(String shippingMethod)
Copyright © 2018. All rights reserved.