|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ExecuteProcessFlag>
org.virtualbox_4_1.ExecuteProcessFlag
public enum ExecuteProcessFlag
Guest process execution flags. Interface ID: {286CEB91-5F66-4C96-9845-4483E90E00AE}
Enum Constant Summary | |
---|---|
Hidden
Do not show the started process according to the guest OS guidelines. |
|
IgnoreOrphanedProcesses
Do not report an error when executed processes are still alive when VBoxService or the guest OS is shutting down. |
|
None
No flag set. |
|
NoProfile
Do not use the user's profile data when exeuting a process. |
|
WaitForProcessStartOnly
Only use the specified timeout value to wait for starting the guest process - the guest process itself then uses an infinite timeout. |
|
WaitForStdErr
The guest process waits until all data from stderr is read out. |
|
WaitForStdOut
The guest process waits until all data from stdout is read out. |
Method Summary | |
---|---|
static ExecuteProcessFlag |
fromValue(long v)
|
static ExecuteProcessFlag |
fromValue(java.lang.String v)
|
int |
value()
|
static ExecuteProcessFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ExecuteProcessFlag[] |
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 ExecuteProcessFlag None
public static final ExecuteProcessFlag WaitForProcessStartOnly
public static final ExecuteProcessFlag IgnoreOrphanedProcesses
public static final ExecuteProcessFlag Hidden
public static final ExecuteProcessFlag NoProfile
public static final ExecuteProcessFlag WaitForStdOut
public static final ExecuteProcessFlag WaitForStdErr
Method Detail |
---|
public static ExecuteProcessFlag[] values()
for (ExecuteProcessFlag c : ExecuteProcessFlag.values()) System.out.println(c);
public static ExecuteProcessFlag 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 ExecuteProcessFlag fromValue(long v)
public static ExecuteProcessFlag fromValue(java.lang.String v)
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |