public enum CopySourceMode extends Enum<CopySourceMode>
Enum Constant and Description |
---|
DIRECTORY_AND_CONTENTS
Treat the source as a directory.
|
DIRECTORY_CONTENTS_ONLY
Treat the source as a directory and copy each file inside it to the destination path, which
must be a directory.
|
FILE
Copy the single source file into the destination path.
|
Modifier and Type | Method and Description |
---|---|
static CopySourceMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CopySourceMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CopySourceMode FILE
public static final CopySourceMode DIRECTORY_CONTENTS_ONLY
public static final CopySourceMode DIRECTORY_AND_CONTENTS
public static CopySourceMode[] values()
for (CopySourceMode c : CopySourceMode.values()) System.out.println(c);
public static CopySourceMode 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