Uses of Interface
org.apache.commons.io.file.Counters.Counter
-
Packages that use Counters.Counter Package Description org.apache.commons.io.file This package provides extensions in the realm of java.nio.file. -
-
Uses of Counters.Counter in org.apache.commons.io.file
Classes in org.apache.commons.io.file that implement Counters.Counter Modifier and Type Class Description private static class
Counters.BigIntegerCounter
Counts using a BigInteger number.private static class
Counters.LongCounter
Counts using a long number.Fields in org.apache.commons.io.file declared as Counters.Counter Modifier and Type Field Description private Counters.Counter
Counters.AbstractPathCounters. byteCounter
private Counters.Counter
Counters.AbstractPathCounters. directoryCounter
private Counters.Counter
Counters.AbstractPathCounters. fileCounter
Methods in org.apache.commons.io.file that return Counters.Counter Modifier and Type Method Description static Counters.Counter
Counters. bigIntegerCounter()
Returns a new BigInteger Counter.Counters.Counter
Counters.AbstractPathCounters. getByteCounter()
Counters.Counter
Counters.PathCounters. getByteCounter()
Gets the byte counter.Counters.Counter
Counters.AbstractPathCounters. getDirectoryCounter()
Counters.Counter
Counters.PathCounters. getDirectoryCounter()
Gets the directory counter.Counters.Counter
Counters.AbstractPathCounters. getFileCounter()
Gets the count of visited files.Counters.Counter
Counters.PathCounters. getFileCounter()
Gets the file counter.static Counters.Counter
Counters. longCounter()
Returns a new long Counter.Constructors in org.apache.commons.io.file with parameters of type Counters.Counter Constructor Description AbstractPathCounters(Counters.Counter byteCounter, Counters.Counter directoryCounter, Counters.Counter fileCounter)
Constructs a new instance.
-