public enum ItemTypeEnum extends Enum<ItemTypeEnum>
| Enum Constant and Description |
|---|
INVENTORY |
NON_INVENTORY |
SERVICE |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ItemTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ItemTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ItemTypeEnum INVENTORY
public static final ItemTypeEnum SERVICE
public static final ItemTypeEnum NON_INVENTORY
public static ItemTypeEnum[] values()
for (ItemTypeEnum c : ItemTypeEnum.values()) System.out.println(c);
public static ItemTypeEnum 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 nullpublic String toString()
toString in class Enum<ItemTypeEnum>Copyright © 2023 MuleSoft, Inc.. All rights reserved.