|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<FileCopyFlag>
org.virtualbox_5_1.FileCopyFlag
public enum FileCopyFlag
File copying flags. NOTE: Not flags are implemented yet. Interface ID: {791909D7-4C64-2FA4-4303-ADB10658D347}
Enum Constant Summary | |
---|---|
FollowLinks
Follow symbolic links. |
|
None
No flag set. |
|
NoReplace
Do not replace the destination file if it exists. |
|
Update
Only copy when the source file is newer than the destination file or when the destination file is missing. |
Method Summary | |
---|---|
static FileCopyFlag |
fromValue(long v)
|
static FileCopyFlag |
fromValue(java.lang.String v)
|
int |
value()
|
static FileCopyFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static FileCopyFlag[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final FileCopyFlag None
public static final FileCopyFlag NoReplace
public static final FileCopyFlag FollowLinks
public static final FileCopyFlag Update
Method Detail |
---|
public static FileCopyFlag[] values()
for (FileCopyFlag c : FileCopyFlag.values()) System.out.println(c);
public static FileCopyFlag 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 name
java.lang.NullPointerException
- if the argument is nullpublic int value()
public static FileCopyFlag fromValue(long v)
public static FileCopyFlag fromValue(java.lang.String v)
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |