Enum Constant and Description |
---|
DOS
DOS-style paths with forward and backward slashes, drive
letters and UNC.
|
UNIX
UNIX-style paths with forward slashes only.
|
Unknown
The path style is not known, most likely because the Guest Additions
aren't active yet.
|
Modifier and Type | Method and Description |
---|---|
static PathStyle |
fromValue(long v) |
static PathStyle |
fromValue(java.lang.String v) |
int |
value() |
static PathStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PathStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PathStyle DOS
public static final PathStyle UNIX
public static final PathStyle Unknown
public static PathStyle[] values()
for (PathStyle c : PathStyle.values()) System.out.println(c);
public static PathStyle 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 namejava.lang.NullPointerException
- if the argument is nullpublic int value()
public static PathStyle fromValue(long v)
public static PathStyle fromValue(java.lang.String v)