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