public static enum DefaultWorkingDirectoryInitializer.CopyStrategy extends Enum<DefaultWorkingDirectoryInitializer.CopyStrategy>
| Enum Constant and Description |
|---|
REPLACE_EXISTING
Replace a destination file if it exists.
|
SKIP_EXISTING
Skip to copy if destination file exists.
|
| Modifier and Type | Method and Description |
|---|---|
static DefaultWorkingDirectoryInitializer.CopyStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DefaultWorkingDirectoryInitializer.CopyStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DefaultWorkingDirectoryInitializer.CopyStrategy REPLACE_EXISTING
public static final DefaultWorkingDirectoryInitializer.CopyStrategy SKIP_EXISTING
public static DefaultWorkingDirectoryInitializer.CopyStrategy[] values()
for (DefaultWorkingDirectoryInitializer.CopyStrategy c : DefaultWorkingDirectoryInitializer.CopyStrategy.values()) System.out.println(c);
public static DefaultWorkingDirectoryInitializer.CopyStrategy 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 © 2023. All rights reserved.