public enum LegalPersonType extends java.lang.Enum<LegalPersonType>
| Enum Constant and Description |
|---|
BUSINESS
BUSINESS legal person type.
|
NotSpecified
Not specified.
|
ORGANIZATION
ORGANIZATION legal person type.
|
PARTNERSHIP
PARTNERSHIP legal person type.
|
SOLETRADER
SOLETRADER legal person type.
|
| Modifier and Type | Method and Description |
|---|---|
static LegalPersonType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LegalPersonType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LegalPersonType NotSpecified
public static final LegalPersonType BUSINESS
public static final LegalPersonType ORGANIZATION
public static final LegalPersonType SOLETRADER
public static final LegalPersonType PARTNERSHIP
public static LegalPersonType[] values()
for (LegalPersonType c : LegalPersonType.values()) System.out.println(c);
public static LegalPersonType 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