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