Class SysoCounter

java.lang.Object
com.itextpdf.text.log.SysoCounter
All Implemented Interfaces:
Counter

public class SysoCounter extends Object implements Counter
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected String
    The name of the class for which the Counter was created (or iText if no name is available)
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
     
    Empty SysoCounter constructor.
    protected
    SysoCounter(Class<?> klass)
    Constructs a SysoCounter for a specific class.
  • Method Summary

    Modifier and Type
    Method
    Description
    getCounter(Class<?> klass)
    Gets a Counter instance for a specific class.
    void
    read(long l)
    This method gets triggered if a file is read.
    void
    written(long l)
    This method gets triggered if a file is written.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • name

      protected String name
      The name of the class for which the Counter was created (or iText if no name is available)
  • Constructor Details

    • SysoCounter

      public SysoCounter()
      Empty SysoCounter constructor.
    • SysoCounter

      protected SysoCounter(Class<?> klass)
      Constructs a SysoCounter for a specific class.
      Parameters:
      klass -
  • Method Details

    • getCounter

      public Counter getCounter(Class<?> klass)
      Description copied from interface: Counter
      Gets a Counter instance for a specific class.
      Specified by:
      getCounter in interface Counter
      See Also:
    • read

      public void read(long l)
      Description copied from interface: Counter
      This method gets triggered if a file is read.
      Specified by:
      read in interface Counter
      Parameters:
      l - the length of the file that was written
      See Also:
    • written

      public void written(long l)
      Description copied from interface: Counter
      This method gets triggered if a file is written.
      Specified by:
      written in interface Counter
      Parameters:
      l - the length of the file that was written
      See Also: