public enum CopyStrategyName extends java.lang.Enum<CopyStrategyName>
| Enum Constant and Description |
|---|
OneByOne |
Tar |
ZipUnix |
ZipWindows |
| Modifier and Type | Method and Description |
|---|---|
static CopyStrategyName |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CopyStrategyName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CopyStrategyName OneByOne
public static final CopyStrategyName ZipWindows
public static final CopyStrategyName Tar
public static final CopyStrategyName ZipUnix
public static CopyStrategyName[] values()
for (CopyStrategyName c : CopyStrategyName.values()) System.out.println(c);
public static CopyStrategyName 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 null