public enum PersonNameUseEnum extends Enum<PersonNameUseEnum>
| Enum Constant and Description |
|---|
ARTIST_STAGE |
LEGAL |
LICENSE |
MAIDEN_NAME |
NEW_BORN |
PSEUDONYM |
| Modifier and Type | Method and Description |
|---|---|
String |
getCode() |
String |
getDescriptor() |
static PersonNameUseEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PersonNameUseEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PersonNameUseEnum LEGAL
public static final PersonNameUseEnum LICENSE
public static final PersonNameUseEnum NEW_BORN
public static final PersonNameUseEnum ARTIST_STAGE
public static final PersonNameUseEnum MAIDEN_NAME
public static final PersonNameUseEnum PSEUDONYM
public static PersonNameUseEnum[] values()
for (PersonNameUseEnum c : PersonNameUseEnum.values()) System.out.println(c);
public static PersonNameUseEnum 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 getCode()
public String getDescriptor()
Copyright © 2021. All rights reserved.