java.io.Serializable
, java.lang.Comparable<ScanConductor.ScanAction>
public static enum ScanConductor.ScanAction extends java.lang.Enum<ScanConductor.ScanAction>
Enum Constant | 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 | Description |
---|---|---|
static ScanConductor.ScanAction |
valueOf(java.lang.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(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 nullCopyright © 2018. All rights reserved.