public enum BusinessType extends java.lang.Enum<BusinessType>
| Enum Constant and Description |
|---|
AUTO_ENTREPRENEUR |
GENERAL_PARTNERSHIP |
LIMITED_COMPANY |
LIMITED_PARTNERSHIP |
PROFESSIONAL_ASSOCIATION |
PUBLIC_LIMITED_COMPANY |
UNINCORPORATED_ASSOCIATION |
| Modifier and Type | Method and Description |
|---|---|
static BusinessType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BusinessType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="general_partnership") public static final BusinessType GENERAL_PARTNERSHIP
@SerializedName(value="limited_partnership") public static final BusinessType LIMITED_PARTNERSHIP
@SerializedName(value="public_limited_company") public static final BusinessType PUBLIC_LIMITED_COMPANY
@SerializedName(value="limited_company") public static final BusinessType LIMITED_COMPANY
@SerializedName(value="professional_association") public static final BusinessType PROFESSIONAL_ASSOCIATION
@SerializedName(value="unincorporated_association") public static final BusinessType UNINCORPORATED_ASSOCIATION
@SerializedName(value="auto_entrepreneur") public static final BusinessType AUTO_ENTREPRENEUR
public static BusinessType[] values()
for (BusinessType c : BusinessType.values()) System.out.println(c);
public static BusinessType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null