public static enum ProcfsStatus.KEY extends Enum<ProcfsStatus.KEY> implements ProcfsEntry.ValueKey
| Enum Constant and Description |
|---|
RSS
Resident set size
|
SWAP
Paged out memory
|
THREADS
Threads
|
VSS
Virtual set size
|
| Modifier and Type | Method and Description |
|---|---|
static ProcfsStatus.KEY |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcfsStatus.KEY[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcfsStatus.KEY THREADS
public static final ProcfsStatus.KEY VSS
public static final ProcfsStatus.KEY RSS
public static final ProcfsStatus.KEY SWAP
public static ProcfsStatus.KEY[] values()
for (ProcfsStatus.KEY c : ProcfsStatus.KEY.values()) System.out.println(c);
public static ProcfsStatus.KEY 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 © 2017–2019. All rights reserved.