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