org.virtualbox_4_1
Enum ExecuteProcessFlag

java.lang.Object
  extended by java.lang.Enum<ExecuteProcessFlag>
      extended by org.virtualbox_4_1.ExecuteProcessFlag
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ExecuteProcessFlag>

public enum ExecuteProcessFlag
extends java.lang.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

None

public static final ExecuteProcessFlag None
No flag set.


WaitForProcessStartOnly

public static final ExecuteProcessFlag WaitForProcessStartOnly
Only use the specified timeout value to wait for starting the guest process - the guest process itself then uses an infinite timeout.


IgnoreOrphanedProcesses

public static final ExecuteProcessFlag IgnoreOrphanedProcesses
Do not report an error when executed processes are still alive when VBoxService or the guest OS is shutting down.


Hidden

public static final ExecuteProcessFlag Hidden
Do not show the started process according to the guest OS guidelines.


NoProfile

public static final ExecuteProcessFlag NoProfile
Do not use the user's profile data when exeuting a process.


WaitForStdOut

public static final ExecuteProcessFlag WaitForStdOut
The guest process waits until all data from stdout is read out.


WaitForStdErr

public static final ExecuteProcessFlag WaitForStdErr
The guest process waits until all data from stderr is read out.

Method Detail

values

public static ExecuteProcessFlag[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (ExecuteProcessFlag c : ExecuteProcessFlag.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ExecuteProcessFlag valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

value

public int value()

fromValue

public static ExecuteProcessFlag fromValue(long v)

fromValue

public static ExecuteProcessFlag fromValue(java.lang.String v)