public static enum PersonName.Group extends Enum<PersonName.Group>
Enum Constant and Description |
---|
Alphabetic |
Ideographic |
Phonetic |
Modifier and Type | Method and Description |
---|---|
static PersonName.Group |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PersonName.Group[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PersonName.Group Alphabetic
public static final PersonName.Group Ideographic
public static final PersonName.Group Phonetic
public static PersonName.Group[] values()
for (PersonName.Group c : PersonName.Group.values()) System.out.println(c);
public static PersonName.Group 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.