| 
 | ||||||||
| 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_7_1.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 GUEST_PROC_CREATE_FLAG_XXX
in GuestControlSvc.h.
Interface ID: {C544CD2B-F02D-4886-9901-71C523DB8DC5}
| Enum Constant Summary | |
|---|---|
| ExpandArgumentsExpands environment variables in process arguments. | |
| HiddenDo not show the started process according to the guest OS guidelines. | |
| IgnoreOrphanedProcessesDo not report an error when executed processes are still alive when VBoxService or the guest OS is shutting down. | |
| NoneNo flag set. | |
| ProfileUtilize the user's profile data when exeuting a process. | |
| UnquotedArgumentsWork around for Windows and OS/2 applications not following normal argument quoting and escaping rules. | |
| WaitForProcessStartOnlyOnly use the specified timeout value to wait for starting the guest process - the guest process itself then uses an infinite timeout. | |
| WaitForStdErrThe guest process waits until all data from stderr is read out. | |
| WaitForStdOutThe 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 | |||||||