org.virtualbox_4_3
Enum PathRenameFlag

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

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

Path renaming flags. Interface ID: {F3BAA09F-C758-453D-B91C-C7787D76351D}


Enum Constant Summary
None
          No flag set.
NoReplace
          Do not replace anything.
NoSymlinks
          Don't allow symbolic links as part of the path.
Replace
          This will replace attempt any target which isn't a directory.
 
Method Summary
static PathRenameFlag fromValue(long v)
           
static PathRenameFlag fromValue(java.lang.String v)
           
 int value()
           
static PathRenameFlag valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PathRenameFlag[] 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 PathRenameFlag None
No flag set.


NoReplace

public static final PathRenameFlag NoReplace
Do not replace anything.


Replace

public static final PathRenameFlag Replace
This will replace attempt any target which isn't a directory.


NoSymlinks

public static final PathRenameFlag NoSymlinks
Don't allow symbolic links as part of the path.

Method Detail

values

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

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

valueOf

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

fromValue

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