public static enum ScanConductor.ScanAction extends Enum<ScanConductor.ScanAction>
| Enum Constant and Description |
|---|
ABORT
Abort the whole scanning process.
|
ABORT_DIRECTORY
Abort processing the current directory.
|
CONTINUE
Continue the scanning with the next item in the list.
|
NO_RECURSE
This response is only valid for
ScanConductor.visitDirectory(String, java.io.File). |
| Modifier and Type | Method and Description |
|---|---|
static ScanConductor.ScanAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScanConductor.ScanAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScanConductor.ScanAction ABORT
public static final ScanConductor.ScanAction CONTINUE
public static final ScanConductor.ScanAction NO_RECURSE
ScanConductor.visitDirectory(String, java.io.File).
Do not recurse into the current directory. The current directory will not be added
and the processing will be continued with the next item in the list.public static final ScanConductor.ScanAction ABORT_DIRECTORY
public static ScanConductor.ScanAction[] values()
for (ScanConductor.ScanAction c : ScanConductor.ScanAction.values()) System.out.println(c);
public static ScanConductor.ScanAction valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2002–2015 The Apache Software Foundation. All rights reserved.