Uses of Interface
org.apache.commons.io.file.Counters.Counter
-
Packages that use Counters.Counter Package Description org.apache.commons.io.file Provides extensions in the realm ofjava.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 aBigInteger
number.private static class
Counters.LongCounter
Counts using along
number.private static class
Counters.NoopCounter
Counts nothing.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.static Counters.Counter
Counters. noopCounter()
Returns the no-op 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.
-