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