Enum ReportType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<ReportType>

    public enum ReportType
    extends java.lang.Enum<ReportType>
    ReportType
    • Enum Constant Detail

      • ELIMINATION_ACTION_UNIT

        public static final ReportType ELIMINATION_ACTION_UNIT
      • ELIMINATION_ACTION

        public static final ReportType ELIMINATION_ACTION
      • TRANSFER_REPLY_UNIT

        public static final ReportType TRANSFER_REPLY_UNIT
      • TRANSFER_REPLY

        public static final ReportType TRANSFER_REPLY
      • PURGE_UNIT

        public static final ReportType PURGE_UNIT
      • PURGE_OBJECTGROUP

        public static final ReportType PURGE_OBJECTGROUP
      • UPDATE_UNIT

        public static final ReportType UPDATE_UNIT
      • BULK_UPDATE_UNIT

        public static final ReportType BULK_UPDATE_UNIT
      • PRESERVATION

        public static final ReportType PRESERVATION
      • PROBATIVE_VALUE

        public static final ReportType PROBATIVE_VALUE
      • EVIDENCE_AUDIT

        public static final ReportType EVIDENCE_AUDIT
      • TRACEABILITY

        public static final ReportType TRACEABILITY
      • UNIT_COMPUTED_INHERITED_RULES_INVALIDATION

        public static final ReportType UNIT_COMPUTED_INHERITED_RULES_INVALIDATION
      • DELETE_GOT_VERSIONS

        public static final ReportType DELETE_GOT_VERSIONS
    • Method Detail

      • values

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

        public static ReportType valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null