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