public enum AddressCategoryId extends java.lang.Enum<AddressCategoryId>
| Enum Constant and Description |
|---|
MainOffice
Address refers to a main office of this company
|
Other
Address is a type not reflected in the other lists
|
Salesperson
Address refers to a location for a single salesperson
|
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 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