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