public enum TransactionAddressType extends java.lang.Enum<TransactionAddressType>
| Enum Constant and Description |
|---|
PointOfOrderAcceptance
Location where the order was accepted; typically the call center, business office where purchase orders are accepted, server locations where orders are processed and accepted
|
PointOfOrderOrigin
Location from which the order was placed; typically the customer's home or business location
|
ShipFrom
This is the location from which the product was shipped
|
ShipTo
This is the location to which the product was shipped
|
SingleLocation
Only used if all addresses for this transaction were identical; e.g.
|
| Modifier and Type | Method and Description |
|---|---|
static TransactionAddressType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransactionAddressType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionAddressType ShipFrom
public static final TransactionAddressType ShipTo
public static final TransactionAddressType PointOfOrderAcceptance
public static final TransactionAddressType PointOfOrderOrigin
public static final TransactionAddressType SingleLocation
public static TransactionAddressType[] values()
for (TransactionAddressType c : TransactionAddressType.values()) System.out.println(c);
public static TransactionAddressType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null