Package oshi.software.os
Enum OperatingSystem.ProcessSort
- java.lang.Object
-
- java.lang.Enum<OperatingSystem.ProcessSort>
-
- oshi.software.os.OperatingSystem.ProcessSort
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<OperatingSystem.ProcessSort>
- Enclosing interface:
- OperatingSystem
public static enum OperatingSystem.ProcessSort extends java.lang.Enum<OperatingSystem.ProcessSort>
Controls sorting of Process output
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OperatingSystem.ProcessSort
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static OperatingSystem.ProcessSort[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CPU
public static final OperatingSystem.ProcessSort CPU
-
MEMORY
public static final OperatingSystem.ProcessSort MEMORY
-
OLDEST
public static final OperatingSystem.ProcessSort OLDEST
-
NEWEST
public static final OperatingSystem.ProcessSort NEWEST
-
PID
public static final OperatingSystem.ProcessSort PID
-
PARENTPID
public static final OperatingSystem.ProcessSort PARENTPID
-
NAME
public static final OperatingSystem.ProcessSort NAME
-
-
Method Detail
-
values
public static OperatingSystem.ProcessSort[] 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 (OperatingSystem.ProcessSort c : OperatingSystem.ProcessSort.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperatingSystem.ProcessSort 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 namejava.lang.NullPointerException
- if the argument is null
-
-