public enum AddressCategoryId extends java.lang.Enum<AddressCategoryId>
| Enum Constant and Description |
|---|
MainOffice
Address refers to a main office of this company
|
MarketplaceRemitsTax
The marketplace vendor collects and remits tax on your behalf for all transactions tied
to this location.
|
Other
Address is a type not reflected in the other lists
|
Salesperson
Address refers to a location for a single salesperson
|
SellerRemitsTax
The marketplace vendor does not collect and remit tax for transactions tied to this
location.
|
Storefront
Address refers to a storefront location
|
Warehouse
Address refers to a warehouse or other non-public location
|
| Modifier and Type | Method and Description |
|---|---|
static AddressCategoryId |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AddressCategoryId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AddressCategoryId Storefront
public static final AddressCategoryId MainOffice
public static final AddressCategoryId Warehouse
public static final AddressCategoryId Salesperson
public static final AddressCategoryId Other
public static final AddressCategoryId SellerRemitsTax
public static final AddressCategoryId MarketplaceRemitsTax
public static AddressCategoryId[] values()
for (AddressCategoryId c : AddressCategoryId.values()) System.out.println(c);
public static AddressCategoryId 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