Class AuditCount
- java.lang.Object
-
- edu.harvard.hul.ois.jhove.handler.audit.AuditCount
-
- Direct Known Subclasses:
AuditState
public class AuditCount extends Object
Count object for the JHOVE Audit output handler.
-
-
Field Summary
Fields Modifier and Type Field Description protected int_notWellFormedNumber of not-well-formed files.protected int_undeterminedNumber of undetermined files.protected int_validNumber of valid files.protected int_wellFormedNumber of well-formed files.
-
Constructor Summary
Constructors Constructor Description AuditCount()Instantiates anAuditCountobject.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetNotWellFormed()Returns the count of not-well-formed files.intgetTotal()Returns the total number of processed files.intgetUndetermined()Returns the count of undetermined files.intgetValid()Returns the total number of valid files.intgetWellFormed()Returns the total number of well-formed files.voidsetNotWellFormed(int notWellFormed)Sets the count of not-well-formed files.voidsetUndetermined(int undetermined)Sets the count of undetermined files.voidsetValid(int valid)Sets the count of valid files.voidsetWellFormed(int wellFormed)Sets the count of well-formed files.
-
-
-
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.
-
-