org.virtualbox_5_0
Enum DirectoryCopyFlags

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

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

Directory copying flags. NOTE: Not flags are implemented yet. Interface ID: {CC500F0C-4A54-88C9-56B3-7E9310416DA7}


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


CopyIntoExisting

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

Method Detail

values

public static DirectoryCopyFlags[] 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 (DirectoryCopyFlags c : DirectoryCopyFlags.values())
    System.out.println(c);

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

valueOf

public static DirectoryCopyFlags 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 DirectoryCopyFlags fromValue(long v)

fromValue

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