org.virtualbox_4_1
Enum ExecuteProcessStatus

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

public enum ExecuteProcessStatus
extends java.lang.Enum<ExecuteProcessStatus>

Guest process execution status. Interface ID: {153768D9-D971-4098-8B5A-C5CB1AB9EA88}


Enum Constant Summary
Down
          Service/OS is stopping, process was killed.
Error
          Something went wrong (error code in flags).
Started
          Process has been started.
TerminatedAbnormally
          Process terminated abnormally.
TerminatedNormally
          Process terminated normally.
TerminatedSignal
          Process terminated via signal.
TimedOutAbnormally
          Process timed out and was not killed successfully.
TimedOutKilled
          Process timed out and was killed.
Undefined
          Process is in an undefined state.
 
Method Summary
static ExecuteProcessStatus fromValue(long v)
           
static ExecuteProcessStatus fromValue(java.lang.String v)
           
 int value()
           
static ExecuteProcessStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ExecuteProcessStatus[] 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

Undefined

public static final ExecuteProcessStatus Undefined
Process is in an undefined state.


Started

public static final ExecuteProcessStatus Started
Process has been started.


TerminatedNormally

public static final ExecuteProcessStatus TerminatedNormally
Process terminated normally.


TerminatedSignal

public static final ExecuteProcessStatus TerminatedSignal
Process terminated via signal.


TerminatedAbnormally

public static final ExecuteProcessStatus TerminatedAbnormally
Process terminated abnormally.


TimedOutKilled

public static final ExecuteProcessStatus TimedOutKilled
Process timed out and was killed.


TimedOutAbnormally

public static final ExecuteProcessStatus TimedOutAbnormally
Process timed out and was not killed successfully.


Down

public static final ExecuteProcessStatus Down
Service/OS is stopping, process was killed.


Error

public static final ExecuteProcessStatus Error
Something went wrong (error code in flags).

Method Detail

values

public static ExecuteProcessStatus[] 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 (ExecuteProcessStatus c : ExecuteProcessStatus.values())
    System.out.println(c);

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

valueOf

public static ExecuteProcessStatus 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 ExecuteProcessStatus fromValue(long v)

fromValue

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