public static enum AttachedItem.Type extends Enum<AttachedItem.Type>
| Enum Constant and Description |
|---|
_UNKNOWN |
MANDATORY |
OPTIONAL |
RECOMMENDED |
| Modifier and Type | Method and Description |
|---|---|
static AttachedItem.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttachedItem.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttachedItem.Type RECOMMENDED
public static final AttachedItem.Type MANDATORY
public static final AttachedItem.Type OPTIONAL
public static final AttachedItem.Type _UNKNOWN
public static AttachedItem.Type[] values()
for (AttachedItem.Type c : AttachedItem.Type.values()) System.out.println(c);
public static AttachedItem.Type 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 © 2023 ChargeBee. All rights reserved.