Class AuditCount

  • Direct Known Subclasses:
    AuditState

    public class AuditCount
    extends Object
    Count object for the JHOVE Audit output handler.
    • Field Detail

      • _valid

        protected int _valid
        Number of valid files.
      • _wellFormed

        protected int _wellFormed
        Number of well-formed files.
      • _notWellFormed

        protected int _notWellFormed
        Number of not-well-formed files.
      • _undetermined

        protected int _undetermined
        Number of undetermined files.
    • Constructor Detail

      • AuditCount

        public AuditCount()
        Instantiates an AuditCount object.
    • Method Detail

      • getTotal

        public int getTotal()
        Returns the total number of processed files.
      • getValid

        public int getValid()
        Returns the total number of valid files.
      • getWellFormed

        public int getWellFormed()
        Returns the total number of well-formed files.
      • getNotWellFormed

        public int getNotWellFormed()
        Returns the count of not-well-formed files.
      • getUndetermined

        public int getUndetermined()
        Returns the count of undetermined files.
      • setValid

        public void setValid​(int valid)
        Sets the count of valid files.
      • setWellFormed

        public void setWellFormed​(int wellFormed)
        Sets the count of well-formed files.
      • setNotWellFormed

        public void setNotWellFormed​(int notWellFormed)
        Sets the count of not-well-formed files.
      • setUndetermined

        public void setUndetermined​(int undetermined)
        Sets the count of undetermined files.