org.virtualbox_7_0
Enum DirectoryCopyFlag

java.lang.Object
  extended by java.lang.Enum<DirectoryCopyFlag>
      extended by org.virtualbox_7_0.DirectoryCopyFlag
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DirectoryCopyFlag>

public enum DirectoryCopyFlag
extends java.lang.Enum<DirectoryCopyFlag>

Directory copying flags. Interface ID: {20108C67-B1EB-4EF6-869B-25539A47A18E}


Enum Constant Summary
CopyIntoExisting
          Allow copying into an existing destination directory.
FollowLinks
          Follow symbolic links.
None
          No flag set.
Recursive
          Copy directories recursively.
 
Method Summary
static DirectoryCopyFlag fromValue(long v)
           
static DirectoryCopyFlag fromValue(java.lang.String v)
           
 int value()
           
static DirectoryCopyFlag valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DirectoryCopyFlag[] 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

None

public static final DirectoryCopyFlag None
No flag set.


CopyIntoExisting

public static final DirectoryCopyFlag CopyIntoExisting
Allow copying into an existing destination directory.


Recursive

public static final DirectoryCopyFlag Recursive
Copy directories recursively.


FollowLinks

public static final DirectoryCopyFlag FollowLinks
Follow symbolic links.

Method Detail

values

public static DirectoryCopyFlag[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (DirectoryCopyFlag c : DirectoryCopyFlag.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static DirectoryCopyFlag valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

value

public int value()

fromValue

public static DirectoryCopyFlag fromValue(long v)

fromValue

public static DirectoryCopyFlag fromValue(java.lang.String v)