public enum SpecialTaxTypeEnum extends Enum<SpecialTaxTypeEnum>
Java class for SpecialTaxTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="SpecialTaxTypeEnum">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="NONE"/>
<enumeration value="ZERO_RATE"/>
<enumeration value="FOREIGN_TAX"/>
<enumeration value="REVERSE_CHARGE"/>
<enumeration value="ADJUSTMENT_RATE"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ADJUSTMENT_RATE |
FOREIGN_TAX |
NONE |
REVERSE_CHARGE |
ZERO_RATE |
| Modifier and Type | Method and Description |
|---|---|
static SpecialTaxTypeEnum |
fromValue(String v) |
String |
value() |
static SpecialTaxTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpecialTaxTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpecialTaxTypeEnum NONE
public static final SpecialTaxTypeEnum ZERO_RATE
public static final SpecialTaxTypeEnum FOREIGN_TAX
public static final SpecialTaxTypeEnum REVERSE_CHARGE
public static final SpecialTaxTypeEnum ADJUSTMENT_RATE
public static SpecialTaxTypeEnum[] values()
for (SpecialTaxTypeEnum c : SpecialTaxTypeEnum.values()) System.out.println(c);
public static SpecialTaxTypeEnum 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 nullpublic String value()
public static SpecialTaxTypeEnum fromValue(String v)
Copyright © 2017. All rights reserved.