|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<PathStyle>
org.virtualbox_6_0.PathStyle
public enum PathStyle
The path style of a system. (Values matches the RTPATH_STR_F_STYLE_XXX defines in iprt/path.h!) Interface ID: {97303A5B-42E8-0A55-D16F-D2A92C295261}
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
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. |
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 |
---|
public static final PathStyle DOS
public static final PathStyle UNIX
public static final PathStyle Unknown
Method Detail |
---|
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 name
java.lang.NullPointerException
- if the argument is nullpublic int value()
public static PathStyle fromValue(long v)
public static PathStyle fromValue(java.lang.String v)
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |