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