|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ProcessCreateFlag>
org.virtualbox_6_0.ProcessCreateFlag
public enum ProcessCreateFlag
Guest process execution flags. NOTE: The values are passed to the guest additions, so its not possible to change (move) or reuse values.here. See EXECUTEPROCESSFLAG_XXX in GuestControlSvc.h. Interface ID: {C544CD2B-F02D-4886-9901-71C523DB8DC5}
Enum Constant Summary | |
---|---|
ExpandArguments
Expands environment variables in process arguments. |
|
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. |
|
Profile
Utilize the user's profile data when exeuting a process. |
|
UnquotedArguments
Work around for Windows and OS/2 applications not following normal argument quoting and escaping rules. |
|
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 ProcessCreateFlag |
fromValue(long v)
|
static ProcessCreateFlag |
fromValue(java.lang.String v)
|
int |
value()
|
static ProcessCreateFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ProcessCreateFlag[] |
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 ProcessCreateFlag None
public static final ProcessCreateFlag WaitForProcessStartOnly
public static final ProcessCreateFlag IgnoreOrphanedProcesses
public static final ProcessCreateFlag Hidden
public static final ProcessCreateFlag Profile
public static final ProcessCreateFlag WaitForStdOut
public static final ProcessCreateFlag WaitForStdErr
public static final ProcessCreateFlag ExpandArguments
public static final ProcessCreateFlag UnquotedArguments
Method Detail |
---|
public static ProcessCreateFlag[] values()
for (ProcessCreateFlag c : ProcessCreateFlag.values()) System.out.println(c);
public static ProcessCreateFlag 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 ProcessCreateFlag fromValue(long v)
public static ProcessCreateFlag fromValue(java.lang.String v)
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |