| 
 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||
java.lang.Objectjava.lang.Enum<ProcessStatus>
org.virtualbox_7_1.ProcessStatus
public enum ProcessStatus
Process execution statuses.
Interface ID: {4D52368F-5B48-4BFE-B486-ACF89139B52F}
| Enum Constant Summary | |
|---|---|
| DownService/OS is stopping, process was killed. | |
| ErrorSomething went wrong. | |
| PausedProcess has been paused. | |
| StartedProcess has been started. | |
| StartingProcess is being started. | |
| TerminatedAbnormallyProcess terminated abnormally. | |
| TerminatedNormallyProcess terminated normally. | |
| TerminatedSignalProcess terminated via signal. | |
| TerminatingProcess is being terminated. | |
| TimedOutAbnormallyProcess timed out and was not killed successfully. | |
| TimedOutKilledProcess timed out and was killed. | |
| UndefinedProcess 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 | 
|---|
public static final ProcessStatus Undefined
public static final ProcessStatus Starting
public static final ProcessStatus Started
public static final ProcessStatus Paused
public static final ProcessStatus Terminating
public static final ProcessStatus TerminatedNormally
public static final ProcessStatus TerminatedSignal
public static final ProcessStatus TerminatedAbnormally
public static final ProcessStatus TimedOutKilled
public static final ProcessStatus TimedOutAbnormally
public static final ProcessStatus Down
public static final ProcessStatus Error
| Method Detail | 
|---|
public static ProcessStatus[] values()
for (ProcessStatus c : ProcessStatus.values()) System.out.println(c);
public static ProcessStatus 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 ProcessStatus fromValue(long v)
public static ProcessStatus fromValue(java.lang.String v)
| 
 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||