public enum AddressCategoryId extends java.lang.Enum<AddressCategoryId>
| Enum Constant and Description |
|---|
MainOffice
No comment data provided
|
Other
No comment data provided
|
Salesperson
No comment data provided
|
Storefront
No comment data provided
|
Warehouse
No comment data provided
|
| 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 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