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