public static enum Partner.PartnerType extends Enum<Partner.PartnerType>
| Enum Constant and Description |
|---|
NATURAL_PERSON |
| Modifier and Type | Method and Description |
|---|---|
static Partner.PartnerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Partner.PartnerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Partner.PartnerType NATURAL_PERSON
public static Partner.PartnerType[] values()
for (Partner.PartnerType c : Partner.PartnerType.values()) System.out.println(c);
public static Partner.PartnerType 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 nullCopyright © 2019 Faktor Zehn GmbH. All rights reserved.