Package | Description |
---|---|
org.apache.commons.io.file |
Provides extensions in the realm of
java.nio.file . |
Modifier and Type | Class and Description |
---|---|
private static class |
Counters.BigIntegerCounter
Counts using a
BigInteger number. |
private static class |
Counters.LongCounter
Counts using a
long number. |
private static class |
Counters.NoopCounter
Counts nothing.
|
Modifier and Type | Field and Description |
---|---|
private Counters.Counter |
Counters.AbstractPathCounters.byteCounter |
private Counters.Counter |
Counters.AbstractPathCounters.directoryCounter |
private Counters.Counter |
Counters.AbstractPathCounters.fileCounter |
Modifier and Type | Method and 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.
|
Constructor and Description |
---|
AbstractPathCounters(Counters.Counter byteCounter,
Counters.Counter directoryCounter,
Counters.Counter fileCounter)
Constructs a new instance.
|