Enum ResearchStudyStatus
- java.lang.Object
-
- java.lang.Enum<ResearchStudyStatus>
-
- org.hl7.fhir.r4.model.codesystems.ResearchStudyStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<ResearchStudyStatus>
public enum ResearchStudyStatus extends Enum<ResearchStudyStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVE
Study is opened for accrual.ADMINISTRATIVELYCOMPLETED
Study is completed prematurely and will not resume; patients are no longer examined nor treated.APPROVED
Protocol is approved by the review board.CLOSEDTOACCRUAL
Study is closed for accrual; patients can be examined and treated.CLOSEDTOACCRUALANDINTERVENTION
Study is closed to accrual and intervention, i.e.COMPLETED
Study is closed to accrual and intervention, i.e.DISAPPROVED
Protocol was disapproved by the review board.INREVIEW
Protocol is submitted to the review board for approval.NULL
added to help the parsersTEMPORARILYCLOSEDTOACCRUAL
Study is temporarily closed for accrual; can be potentially resumed in the future; patients can be examined and treated.TEMPORARILYCLOSEDTOACCRUALANDINTERVENTION
Study is temporarily closed for accrual and intervention and potentially can be resumed in the future.WITHDRAWN
Protocol was withdrawn by the lead organization.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ResearchStudyStatus
fromCode(String codeString)
String
getDefinition()
String
getDisplay()
String
getSystem()
String
toCode()
static ResearchStudyStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static ResearchStudyStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACTIVE
public static final ResearchStudyStatus ACTIVE
Study is opened for accrual.
-
ADMINISTRATIVELYCOMPLETED
public static final ResearchStudyStatus ADMINISTRATIVELYCOMPLETED
Study is completed prematurely and will not resume; patients are no longer examined nor treated.
-
APPROVED
public static final ResearchStudyStatus APPROVED
Protocol is approved by the review board.
-
CLOSEDTOACCRUAL
public static final ResearchStudyStatus CLOSEDTOACCRUAL
Study is closed for accrual; patients can be examined and treated.
-
CLOSEDTOACCRUALANDINTERVENTION
public static final ResearchStudyStatus CLOSEDTOACCRUALANDINTERVENTION
Study is closed to accrual and intervention, i.e. the study is closed to enrollment, all study subjects have completed treatment or intervention but are still being followed according to the primary objective of the study.
-
COMPLETED
public static final ResearchStudyStatus COMPLETED
Study is closed to accrual and intervention, i.e. the study is closed to enrollment, all study subjects have completed treatment or intervention but are still being followed according to the primary objective of the study.
-
DISAPPROVED
public static final ResearchStudyStatus DISAPPROVED
Protocol was disapproved by the review board.
-
INREVIEW
public static final ResearchStudyStatus INREVIEW
Protocol is submitted to the review board for approval.
-
TEMPORARILYCLOSEDTOACCRUAL
public static final ResearchStudyStatus TEMPORARILYCLOSEDTOACCRUAL
Study is temporarily closed for accrual; can be potentially resumed in the future; patients can be examined and treated.
-
TEMPORARILYCLOSEDTOACCRUALANDINTERVENTION
public static final ResearchStudyStatus TEMPORARILYCLOSEDTOACCRUALANDINTERVENTION
Study is temporarily closed for accrual and intervention and potentially can be resumed in the future.
-
WITHDRAWN
public static final ResearchStudyStatus WITHDRAWN
Protocol was withdrawn by the lead organization.
-
NULL
public static final ResearchStudyStatus NULL
added to help the parsers
-
-
Method Detail
-
values
public static ResearchStudyStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ResearchStudyStatus c : ResearchStudyStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResearchStudyStatus valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
fromCode
public static ResearchStudyStatus fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-