public enum ConditionVerificationStatus extends Enum<ConditionVerificationStatus>
PROVISIONAL
CONFIRMED
Enum Constant and Description |
---|
CONFIRMED
There is sufficient diagnostic and/or clinical evidence to treat this as a confirmed condition.
|
PROVISIONAL
This is a tentative diagnosis - still a candidate that is under consideration.
|
Modifier and Type | Method and Description |
---|---|
static ConditionVerificationStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConditionVerificationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConditionVerificationStatus PROVISIONAL
public static final ConditionVerificationStatus CONFIRMED
public static ConditionVerificationStatus[] values()
for (ConditionVerificationStatus c : ConditionVerificationStatus.values()) System.out.println(c);
public static ConditionVerificationStatus 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.