Enum Protocol.ProtocolType

    • Enum Constant Detail

      • CONDITION

        public static final Protocol.ProtocolType CONDITION
        The protocol describes the steps to manage a particular health condition including monitoring, treatment, mitigation and/or follow-up
      • DEVICE

        public static final Protocol.ProtocolType DEVICE
        The protocol describes the appropriate use of a particular device (medical device, software, etc.)
      • DRUG

        public static final Protocol.ProtocolType DRUG
        The protocol describes the appropriate use of a particular medication including indications for use, dosages, treatment cycles, etc.
      • STUDY

        public static final Protocol.ProtocolType STUDY
        The protocol describes the set of steps to occur for study subjects enrolled in an interventional study
    • Method Detail

      • values

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

        public static Protocol.ProtocolType 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