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