Enum ResearchStudyStatus.ValueSet

    • Enum Constant Detail

      • ADMINISTRATIVELY_COMPLETED

        public static final ResearchStudyStatus.ValueSet ADMINISTRATIVELY_COMPLETED
        Administratively Completed

        Study is completed prematurely and will not resume; patients are no longer examined nor treated.

      • CLOSED_TO_ACCRUAL

        public static final ResearchStudyStatus.ValueSet CLOSED_TO_ACCRUAL
        Closed to Accrual

        Study 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 Intervention

        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.ValueSet COMPLETED
        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.

      • TEMPORARILY_CLOSED_TO_ACCRUAL

        public static final ResearchStudyStatus.ValueSet TEMPORARILY_CLOSED_TO_ACCRUAL
        Temporarily Closed to Accrual

        Study 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 Intervention

        Study is temporarily closed for accrual and intervention and potentially can be resumed in the future.

    • 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 name
        NullPointerException - 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