public static enum PersonName.Component extends Enum<PersonName.Component>
Enum Constant and Description |
---|
FamilyName |
GivenName |
MiddleName |
NamePrefix |
NameSuffix |
Modifier and Type | Method and Description |
---|---|
static PersonName.Component |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PersonName.Component[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PersonName.Component FamilyName
public static final PersonName.Component GivenName
public static final PersonName.Component MiddleName
public static final PersonName.Component NamePrefix
public static final PersonName.Component NameSuffix
public static PersonName.Component[] values()
for (PersonName.Component c : PersonName.Component.values()) System.out.println(c);
public static PersonName.Component 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 © 2017 dcm4che.org. All rights reserved.