public enum GlobalItemType extends Enum<GlobalItemType>
| Enum Constant and Description |
|---|
ACCOUNT |
CONTACT |
INVOICE |
ORDER |
PRODUCT |
| Modifier and Type | Method and Description |
|---|---|
static GlobalItemType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GlobalItemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GlobalItemType ACCOUNT
public static final GlobalItemType PRODUCT
public static final GlobalItemType CONTACT
public static final GlobalItemType INVOICE
public static final GlobalItemType ORDER
public static GlobalItemType[] values()
for (GlobalItemType c : GlobalItemType.values()) System.out.println(c);
public static GlobalItemType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.