public static enum NioFileCopierWithProgressMeter.Verbosity extends java.lang.Enum<NioFileCopierWithProgressMeter.Verbosity>
NioFileCopierWithProgressMeter
.Enum Constant and Description |
---|
MINIMAL
Output logging messages at the start and end of the copy, but no progress during.
|
MODERATE
Output basic progress information during the copy.
|
SILENT
Output no logging messages whatsoever.
|
VERBOSE
Output verbose progress information during the copy.
|
Modifier and Type | Method and Description |
---|---|
boolean |
isAbove(NioFileCopierWithProgressMeter.Verbosity other) |
static NioFileCopierWithProgressMeter.Verbosity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NioFileCopierWithProgressMeter.Verbosity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NioFileCopierWithProgressMeter.Verbosity SILENT
public static final NioFileCopierWithProgressMeter.Verbosity MINIMAL
public static final NioFileCopierWithProgressMeter.Verbosity MODERATE
public static final NioFileCopierWithProgressMeter.Verbosity VERBOSE
public static NioFileCopierWithProgressMeter.Verbosity[] values()
for (NioFileCopierWithProgressMeter.Verbosity c : NioFileCopierWithProgressMeter.Verbosity.values()) System.out.println(c);
public static NioFileCopierWithProgressMeter.Verbosity valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic boolean isAbove(NioFileCopierWithProgressMeter.Verbosity other)