/** * */ package at.gv.egiz.pdfas.performance; /** * Contains various global PerformanceCounters that provide information about the system. * * @author wprinz */ public final class PerformanceCounters { /** * Keeps track of the number of text extractions done so far. */ public static PerformanceCounter textExtractions = new PerformanceCounter("TextExtractions"); /** * Keeps track of the number of large byte array allocations. */ public static PerformanceCounter byteArrays = new PerformanceCounter("ByteArrays"); }