public static enum PatientIdentifierType.UniquenessBehavior extends Enum<PatientIdentifierType.UniquenessBehavior>
Enum Constant and Description |
---|
LOCATION
Indicates that identifiers should be unique only across a location if the identifier's
location property is not null
|
NON_UNIQUE
Indicates that duplicates identifiers are allowed
|
UNIQUE
Indicates that identifiers should be globally unique
|
Modifier and Type | Method and Description |
---|---|
static PatientIdentifierType.UniquenessBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PatientIdentifierType.UniquenessBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PatientIdentifierType.UniquenessBehavior UNIQUE
public static final PatientIdentifierType.UniquenessBehavior NON_UNIQUE
public static final PatientIdentifierType.UniquenessBehavior LOCATION
public static PatientIdentifierType.UniquenessBehavior[] values()
for (PatientIdentifierType.UniquenessBehavior c : PatientIdentifierType.UniquenessBehavior.values()) System.out.println(c);
public static PatientIdentifierType.UniquenessBehavior 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 © 2024 OpenMRS Inc.. All rights reserved.