public static enum CopyStep.DirectoryMode extends Enum<CopyStep.DirectoryMode>
Enum Constant and Description |
---|
CONTENTS_ONLY
Copy only the contents of the directory (recursively).
|
DIRECTORY_AND_CONTENTS
Copy the directory and its contents (recursively).
|
Modifier and Type | Method and Description |
---|---|
static CopyStep.DirectoryMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CopyStep.DirectoryMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CopyStep.DirectoryMode CONTENTS_ONLY
public static final CopyStep.DirectoryMode DIRECTORY_AND_CONTENTS
public static CopyStep.DirectoryMode[] values()
for (CopyStep.DirectoryMode c : CopyStep.DirectoryMode.values()) System.out.println(c);
public static CopyStep.DirectoryMode 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 null