public enum AddressCategoryId extends java.lang.Enum<AddressCategoryId>
| Enum Constant and Description |
|---|
MainOffice |
MarketplaceRemitsTax |
NonPhysical |
Other |
Salesperson |
SellerRemitsTax |
Storefront |
Warehouse |
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static AddressCategoryId |
valueOf(int intValue) |
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 final AddressCategoryId NonPhysical
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 nullpublic static AddressCategoryId valueOf(int intValue)
public int getValue()