public enum LinuxProcessState extends Enum<LinuxProcessState>
| Enum Constant and Description |
|---|
D
waiting in uninterruptible disk sleep
|
R
running
|
S
sleeping in an interruptible wait
|
T
traced or stopped (on a signal)
|
W
paging
|
Z
zombie
|
| Modifier and Type | Method and Description |
|---|---|
static LinuxProcessState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LinuxProcessState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LinuxProcessState R
public static final LinuxProcessState S
public static final LinuxProcessState D
public static final LinuxProcessState Z
public static final LinuxProcessState T
public static final LinuxProcessState W
public static LinuxProcessState[] values()
for (LinuxProcessState c : LinuxProcessState.values()) System.out.println(c);
public static LinuxProcessState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2014–2017 Github jjYBdx4IL Projects. All rights reserved.