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