Enum DefinitionResourceTypes

    • Enum Constant Detail

      • ACTIVITYDEFINITION

        public static final DefinitionResourceTypes ACTIVITYDEFINITION
        This resource allows for the definition of some activity to be performed, independent of a particular patient, practitioner, or other performance context.
      • PLANDEFINITION

        public static final DefinitionResourceTypes PLANDEFINITION
        This resource allows for the definition of various types of plans as a sharable, consumable, and executable artifact. The resource is general enough to support the description of a broad range of clinical artifacts such as clinical decision support rules, order sets and protocols.
      • QUESTIONNAIRE

        public static final DefinitionResourceTypes QUESTIONNAIRE
        A structured set of questions intended to guide the collection of answers from end-users. Questionnaires provide detailed control over order, presentation, phraseology and grouping to allow coherent, consistent data collection.
    • Method Detail

      • values

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

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