public enum NameQualifier extends Enum<NameQualifier>
| Enum Constant and Description |
|---|
CUSTODIAN_OR_GUARDIAN |
PATIENT |
PROFESSIONAL |
| Modifier and Type | Method and Description |
|---|---|
static NameQualifier |
fromCode(String code) |
String |
getQualifier() |
static NameQualifier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NameQualifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NameQualifier PATIENT
public static final NameQualifier PROFESSIONAL
public static final NameQualifier CUSTODIAN_OR_GUARDIAN
public static NameQualifier[] values()
for (NameQualifier c : NameQualifier.values()) System.out.println(c);
public static NameQualifier 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 static NameQualifier fromCode(String code)
public String getQualifier()
Copyright © 2019 Open eHealth Foundation. All rights reserved.