Enum ResearchStudyPrimPurpType

    • Enum Constant Detail

      • PREVENTION

        public static final ResearchStudyPrimPurpType PREVENTION
        One or more interventions are being assessed for preventing the development of a specific disease or health condition.
      • SUPPORTIVECARE

        public static final ResearchStudyPrimPurpType SUPPORTIVECARE
        One or more interventions are evaluated for maximizing comfort, minimizing side effects, or mitigating against a decline in the participant's health or function.
      • SCREENING

        public static final ResearchStudyPrimPurpType SCREENING
        One or more interventions are assessed or examined for identifying a condition, or risk factors for a condition, in people who are not yet known to have the condition or risk factor.
      • BASICSCIENCE

        public static final ResearchStudyPrimPurpType BASICSCIENCE
        One or more interventions for examining the basic mechanism of action (for example, physiology or biomechanics of an intervention).
      • DEVICEFEASIBILITY

        public static final ResearchStudyPrimPurpType DEVICEFEASIBILITY
        An intervention of a device product is being evaluated to determine the feasibility of the product or to test a prototype device and not health outcomes. Such studies are conducted to confirm the design and operating specifications of a device before beginning a full clinical trial.
    • Method Detail

      • values

        public static ResearchStudyPrimPurpType[] 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 (ResearchStudyPrimPurpType c : ResearchStudyPrimPurpType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ResearchStudyPrimPurpType 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