Enum ResearchSubjectStatus

    • Enum Constant Detail

      • FOLLOWUP

        public static final ResearchSubjectStatus FOLLOWUP
        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 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.
      • OFFSTUDY

        public static final ResearchSubjectStatus OFFSTUDY
        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.
      • ONSTUDYINTERVENTION

        public static final ResearchSubjectStatus ONSTUDYINTERVENTION
        The person is receiving the treatment or participating in an activity (e.g. yoga, diet, etc.) that the study is evaluating.
      • ONSTUDYOBSERVATION

        public static final ResearchSubjectStatus ONSTUDYOBSERVATION
        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".
    • Method Detail

      • values

        public static ResearchSubjectStatus[] 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 c : ResearchSubjectStatus.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 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