org.virtualbox_6_1
Enum SymlinkReadFlag

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

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

Symbolic link reading flags. Interface ID: {B7FE2B9D-790E-4B25-8ADF-1CA33026931F}


Enum Constant Summary
None
          No flags set.
NoSymlinks
          Don't allow symbolic links as part of the path.
 
Method Summary
static SymlinkReadFlag fromValue(long v)
           
static SymlinkReadFlag fromValue(java.lang.String v)
           
 int value()
           
static SymlinkReadFlag valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SymlinkReadFlag[] 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 SymlinkReadFlag None
No flags set.


NoSymlinks

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

Method Detail

values

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

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

valueOf

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

fromValue

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