org.virtualbox_7_0
Enum ProcessStatus

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

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

Process execution statuses. Interface ID: {4D52368F-5B48-4BFE-B486-ACF89139B52F}


Enum Constant Summary
Down
          Service/OS is stopping, process was killed.
Error
          Something went wrong.
Paused
          Process has been paused.
Started
          Process has been started.
Starting
          Process is being started.
TerminatedAbnormally
          Process terminated abnormally.
TerminatedNormally
          Process terminated normally.
TerminatedSignal
          Process terminated via signal.
Terminating
          Process is being terminated.
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 ProcessStatus fromValue(long v)
           
static ProcessStatus fromValue(java.lang.String v)
           
 int value()
           
static ProcessStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ProcessStatus[] 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 ProcessStatus Undefined
Process is in an undefined state.


Starting

public static final ProcessStatus Starting
Process is being started.


Started

public static final ProcessStatus Started
Process has been started.


Paused

public static final ProcessStatus Paused
Process has been paused.


Terminating

public static final ProcessStatus Terminating
Process is being terminated.


TerminatedNormally

public static final ProcessStatus TerminatedNormally
Process terminated normally.


TerminatedSignal

public static final ProcessStatus TerminatedSignal
Process terminated via signal.


TerminatedAbnormally

public static final ProcessStatus TerminatedAbnormally
Process terminated abnormally.


TimedOutKilled

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


TimedOutAbnormally

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


Down

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


Error

public static final ProcessStatus Error
Something went wrong.

Method Detail

values

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

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

valueOf

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

fromValue

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