Enum DiagnosticReportStatus

    • Enum Constant Detail

      • PARTIAL

        public static final DiagnosticReportStatus PARTIAL
        This is a partial (e.g. initial, interim or preliminary) report: data in the report may be incomplete or unverified.
      • CORRECTED

        public static final DiagnosticReportStatus CORRECTED
        The report has been modified subsequent to being Final, and is complete and verified by an authorized person
      • APPENDED

        public static final DiagnosticReportStatus APPENDED
        The report has been modified subsequent to being Final, and is complete and verified by an authorized person. New content has been added, but existing content hasn't changed.
      • CANCELLED

        public static final DiagnosticReportStatus CANCELLED
        The report is unavailable because the measurement was not started or not completed (also sometimes called "aborted").
    • Method Detail

      • values

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

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