public enum ProcessCreateFlag extends java.lang.Enum<ProcessCreateFlag>
{C544CD2B-F02D-4886-9901-71C523DB8DC5}
Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
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
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 namejava.lang.NullPointerException
- if the argument is nullpublic int value()
public static ProcessCreateFlag fromValue(long v)
public static ProcessCreateFlag fromValue(java.lang.String v)