Class AuditCount
java.lang.Object
edu.harvard.hul.ois.jhove.handler.audit.AuditCount
- Direct Known Subclasses:
AuditState
Count object for the JHOVE Audit output handler.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected intNumber of not-well-formed files.protected intNumber of undetermined files.protected intNumber of valid files.protected intNumber of well-formed files. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintReturns the count of not-well-formed files.intgetTotal()Returns the total number of processed files.intReturns the count of undetermined files.intgetValid()Returns the total number of valid files.intReturns 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.
-
Field Details
-
_valid
protected int _validNumber of valid files. -
_wellFormed
protected int _wellFormedNumber of well-formed files. -
_notWellFormed
protected int _notWellFormedNumber of not-well-formed files. -
_undetermined
protected int _undeterminedNumber of undetermined files.
-
-
Constructor Details
-
AuditCount
public AuditCount()Instantiates anAuditCountobject.
-
-
Method Details
-
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.
-