Enum ResearchSubjectStatus.ValueSet

    • Enum Constant Detail

      • CANDIDATE

        public static final ResearchSubjectStatus.ValueSet CANDIDATE
        Candidate

        An identified person that can be considered for inclusion in a study.

      • ELIGIBLE

        public static final ResearchSubjectStatus.ValueSet ELIGIBLE
        Eligible

        A person that has met the eligibility criteria for inclusion in a study.

      • FOLLOW_UP

        public static final ResearchSubjectStatus.ValueSet FOLLOW_UP
        Follow-up

        A person is no longer receiving study intervention and/or being evaluated with tests and procedures according to the protocol, but they are being monitored on a protocol-prescribed schedule.

      • INELIGIBLE

        public static final ResearchSubjectStatus.ValueSet INELIGIBLE
        Ineligible

        A person who did not meet one or more criteria required for participation in a study is considered to have failed screening or

        is ineligible for the study.

      • OFF_STUDY

        public static final ResearchSubjectStatus.ValueSet OFF_STUDY
        Off-study

        A person that has ended their participation on a study either because their treatment/observation is complete or through not

        responding, withdrawal, non-compliance and/or adverse event.

      • ON_STUDY_INTERVENTION

        public static final ResearchSubjectStatus.ValueSet ON_STUDY_INTERVENTION
        On-study-intervention

        The person is receiving the treatment or participating in an activity (e.g. yoga, diet, etc.) that the study is evaluating.

      • ON_STUDY_OBSERVATION

        public static final ResearchSubjectStatus.ValueSet ON_STUDY_OBSERVATION
        On-study-observation

        The subject is being evaluated via tests and assessments according to the study calendar, but is not receiving any intervention. Note that this state is study-dependent and might not exist in all studies. A synonym for this is "short- term follow-up".

      • POTENTIAL_CANDIDATE

        public static final ResearchSubjectStatus.ValueSet POTENTIAL_CANDIDATE
        Potential Candidate

        A person that is potentially eligible for participation in the study.

      • WITHDRAWN

        public static final ResearchSubjectStatus.ValueSet WITHDRAWN
        Withdrawn

        The person has withdrawn their participation in the study before registration.

    • Method Detail

      • values

        public static ResearchSubjectStatus.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 (ResearchSubjectStatus.ValueSet c : ResearchSubjectStatus.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 ResearchSubjectStatus.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 ResearchSubjectStatus.ValueSet from​(String value)
        Factory method for creating ResearchSubjectStatus.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