Enum ResearchStudyStatus.ValueSet
- java.lang.Object
-
- java.lang.Enum<ResearchStudyStatus.ValueSet>
-
- com.ibm.fhir.model.type.code.ResearchStudyStatus.ValueSet
-
- All Implemented Interfaces:
Serializable,Comparable<ResearchStudyStatus.ValueSet>
- Enclosing class:
- ResearchStudyStatus
public static enum ResearchStudyStatus.ValueSet extends Enum<ResearchStudyStatus.ValueSet>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVEActiveADMINISTRATIVELY_COMPLETEDAdministratively CompletedAPPROVEDApprovedCLOSED_TO_ACCRUALClosed to AccrualCLOSED_TO_ACCRUAL_AND_INTERVENTIONClosed to Accrual and InterventionCOMPLETEDCompletedDISAPPROVEDDisapprovedIN_REVIEWIn ReviewTEMPORARILY_CLOSED_TO_ACCRUALTemporarily Closed to AccrualTEMPORARILY_CLOSED_TO_ACCRUAL_AND_INTERVENTIONTemporarily Closed to Accrual and InterventionWITHDRAWNWithdrawn
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ResearchStudyStatus.ValueSetfrom(String value)Factory method for creating ResearchStudyStatus.ValueSet values from a passed string value.Stringvalue()static ResearchStudyStatus.ValueSetvalueOf(String name)Returns the enum constant of this type with the specified name.static ResearchStudyStatus.ValueSet[]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.ValueSet ACTIVE
ActiveStudy is opened for accrual.
-
ADMINISTRATIVELY_COMPLETED
public static final ResearchStudyStatus.ValueSet ADMINISTRATIVELY_COMPLETED
Administratively CompletedStudy is completed prematurely and will not resume; patients are no longer examined nor treated.
-
APPROVED
public static final ResearchStudyStatus.ValueSet APPROVED
ApprovedProtocol is approved by the review board.
-
CLOSED_TO_ACCRUAL
public static final ResearchStudyStatus.ValueSet CLOSED_TO_ACCRUAL
Closed to AccrualStudy is closed for accrual; patients can be examined and treated.
-
CLOSED_TO_ACCRUAL_AND_INTERVENTION
public static final ResearchStudyStatus.ValueSet CLOSED_TO_ACCRUAL_AND_INTERVENTION
Closed to Accrual and InterventionStudy 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.ValueSet COMPLETED
CompletedStudy 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.ValueSet DISAPPROVED
DisapprovedProtocol was disapproved by the review board.
-
IN_REVIEW
public static final ResearchStudyStatus.ValueSet IN_REVIEW
In ReviewProtocol is submitted to the review board for approval.
-
TEMPORARILY_CLOSED_TO_ACCRUAL
public static final ResearchStudyStatus.ValueSet TEMPORARILY_CLOSED_TO_ACCRUAL
Temporarily Closed to AccrualStudy is temporarily closed for accrual; can be potentially resumed in the future; patients can be examined and treated.
-
TEMPORARILY_CLOSED_TO_ACCRUAL_AND_INTERVENTION
public static final ResearchStudyStatus.ValueSet TEMPORARILY_CLOSED_TO_ACCRUAL_AND_INTERVENTION
Temporarily Closed to Accrual and InterventionStudy is temporarily closed for accrual and intervention and potentially can be resumed in the future.
-
WITHDRAWN
public static final ResearchStudyStatus.ValueSet WITHDRAWN
WithdrawnProtocol was withdrawn by the lead organization.
-
-
Method Detail
-
values
public static ResearchStudyStatus.ValueSet[] 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.ValueSet c : ResearchStudyStatus.ValueSet.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.ValueSet 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
-
value
public String value()
- Returns:
- The java.lang.String value of the code represented by this enum
-
from
public static ResearchStudyStatus.ValueSet from(String value)
Factory method for creating ResearchStudyStatus.ValueSet values from a passed string value.- Parameters:
value- A string that matches one of the allowed code values- Throws:
IllegalArgumentException- If the passed string cannot be parsed into an allowed code value
-
-