public enum SymLinkPolicy extends Enum<SymLinkPolicy>
Enum Constant and Description |
---|
COPY
Copy the symbolic link itself to the destination
|
COPY_FORCE
Forcibly copy the symbolic link itself
|
FOLLOW
Follow the symbolic link and copy the file
|
SKIP
Skip the symbolic link
|
Modifier and Type | Method and Description |
---|---|
String |
getDescription() |
String |
toString() |
static SymLinkPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SymLinkPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SymLinkPolicy FOLLOW
public static final SymLinkPolicy SKIP
public static final SymLinkPolicy COPY
public static final SymLinkPolicy COPY_FORCE
public static SymLinkPolicy[] values()
for (SymLinkPolicy c : SymLinkPolicy.values()) System.out.println(c);
public static SymLinkPolicy 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 nullpublic String getDescription()
public String toString()
toString
in class Enum<SymLinkPolicy>
Copyright © 2015 Aspera Inc.. All rights reserved.