public enum TaxFormTypeEnum extends Enum<TaxFormTypeEnum>
Java class for TaxFormTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TaxFormTypeEnum">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Form C"/>
<enumeration value="Form F"/>
<enumeration value="Form I"/>
<enumeration value="Form H"/>
<enumeration value="Form E1"/>
<enumeration value="Form E2"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
FORM_C |
FORM_E_1 |
FORM_E_2 |
FORM_F |
FORM_H |
FORM_I |
| Modifier and Type | Method and Description |
|---|---|
static TaxFormTypeEnum |
fromValue(String v) |
String |
value() |
static TaxFormTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaxFormTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaxFormTypeEnum FORM_C
public static final TaxFormTypeEnum FORM_F
public static final TaxFormTypeEnum FORM_I
public static final TaxFormTypeEnum FORM_H
public static final TaxFormTypeEnum FORM_E_1
public static final TaxFormTypeEnum FORM_E_2
public static TaxFormTypeEnum[] values()
for (TaxFormTypeEnum c : TaxFormTypeEnum.values()) System.out.println(c);
public static TaxFormTypeEnum 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 TaxFormTypeEnum fromValue(String v)
Copyright © 2019. All Rights Reserved.