Enum ModuleMetadataResourceType

    • Enum Constant Detail

      • DOCUMENTATION

        public static final ModuleMetadataResourceType DOCUMENTATION
        Additional documentation for the module. This would include additional instructions on usage as well additional information on clinical context or appropriateness
      • JUSTIFICATION

        public static final ModuleMetadataResourceType JUSTIFICATION
        A summary of the justification for the artifact including supporting evidence, relevant guidelines, or other clinically important information. This information is intended to provide a way to make the justification for the module available to the consumer of interventions or results produced by the artifact
      • CITATION

        public static final ModuleMetadataResourceType CITATION
        Bibliographic citation for papers, references, or other relevant material for the module. This is intended to allow for citation of related material, but that was not necessarily specifically prepared in connection with this module
      • DERIVEDFROM

        public static final ModuleMetadataResourceType DERIVEDFROM
        The module is derived from the resource. This is intended to capture the relationship when a particular module is based on the content of another module, but is modified to capture either a different set of overall requirements, or a more specific set of requirements such as those involved in a particular institution or clinical setting
    • Method Detail

      • values

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

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