|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<CopyFileFlag>
org.virtualbox_4_1.CopyFileFlag
public enum CopyFileFlag
Host/Guest copy flags. At the moment none of these flags are implemented. Interface ID: {23F79FDF-738A-493D-B80B-42D607C9B916}
Enum Constant Summary | |
---|---|
FollowLinks
Follow symbolic links. |
|
None
No flag set. |
|
Recursive
Copy directories recursively. |
|
Update
Only copy when the source file is newer than the destination file or when the destination file is missing. |
Method Summary | |
---|---|
static CopyFileFlag |
fromValue(long v)
|
static CopyFileFlag |
fromValue(java.lang.String v)
|
int |
value()
|
static CopyFileFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static CopyFileFlag[] |
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 CopyFileFlag None
public static final CopyFileFlag Recursive
public static final CopyFileFlag Update
public static final CopyFileFlag FollowLinks
Method Detail |
---|
public static CopyFileFlag[] values()
for (CopyFileFlag c : CopyFileFlag.values()) System.out.println(c);
public static CopyFileFlag 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 CopyFileFlag fromValue(long v)
public static CopyFileFlag fromValue(java.lang.String v)
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |