public enum CompanyTypeCode extends Enum<CompanyTypeCode>
Java class for null.
The following schema fragment specifies the expected content contained within this class.
<simpleType>
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="C"/>
<enumeration value="D"/>
<enumeration value="E"/>
<enumeration value="G"/>
<enumeration value="N"/>
<enumeration value="O"/>
<enumeration value="P"/>
<enumeration value="S"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
EDUCATIONAL |
GOVT_AGENCY |
NON_PROFIT |
PARTNERSHIP |
PRIVATELY_HELD |
PUBLIC_COMPANY |
SELF_EMPLOYED |
SELF_OWNED |
| Modifier and Type | Method and Description |
|---|---|
static CompanyTypeCode |
fromValue(String v) |
String |
value() |
static CompanyTypeCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompanyTypeCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompanyTypeCode PUBLIC_COMPANY
public static final CompanyTypeCode EDUCATIONAL
public static final CompanyTypeCode SELF_EMPLOYED
public static final CompanyTypeCode GOVT_AGENCY
public static final CompanyTypeCode NON_PROFIT
public static final CompanyTypeCode SELF_OWNED
public static final CompanyTypeCode PRIVATELY_HELD
public static final CompanyTypeCode PARTNERSHIP
public static CompanyTypeCode[] values()
for (CompanyTypeCode c : CompanyTypeCode.values()) System.out.println(c);
public static CompanyTypeCode 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 CompanyTypeCode fromValue(String v)
Apache Camel