Package oshi.software.os.unix.openbsd
Enum OpenBsdOperatingSystem.PsKeywords
- java.lang.Object
-
- java.lang.Enum<OpenBsdOperatingSystem.PsKeywords>
-
- oshi.software.os.unix.openbsd.OpenBsdOperatingSystem.PsKeywords
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<OpenBsdOperatingSystem.PsKeywords>
- Enclosing class:
- OpenBsdOperatingSystem
static enum OpenBsdOperatingSystem.PsKeywords extends java.lang.Enum<OpenBsdOperatingSystem.PsKeywords>
-
-
Constructor Summary
Constructors Modifier Constructor Description private
PsKeywords()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OpenBsdOperatingSystem.PsKeywords
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static OpenBsdOperatingSystem.PsKeywords[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STATE
public static final OpenBsdOperatingSystem.PsKeywords STATE
-
PID
public static final OpenBsdOperatingSystem.PsKeywords PID
-
PPID
public static final OpenBsdOperatingSystem.PsKeywords PPID
-
USER
public static final OpenBsdOperatingSystem.PsKeywords USER
-
UID
public static final OpenBsdOperatingSystem.PsKeywords UID
-
GROUP
public static final OpenBsdOperatingSystem.PsKeywords GROUP
-
GID
public static final OpenBsdOperatingSystem.PsKeywords GID
-
PRI
public static final OpenBsdOperatingSystem.PsKeywords PRI
-
VSZ
public static final OpenBsdOperatingSystem.PsKeywords VSZ
-
RSS
public static final OpenBsdOperatingSystem.PsKeywords RSS
-
ETIME
public static final OpenBsdOperatingSystem.PsKeywords ETIME
-
CPUTIME
public static final OpenBsdOperatingSystem.PsKeywords CPUTIME
-
COMM
public static final OpenBsdOperatingSystem.PsKeywords COMM
-
MAJFLT
public static final OpenBsdOperatingSystem.PsKeywords MAJFLT
-
MINFLT
public static final OpenBsdOperatingSystem.PsKeywords MINFLT
-
NVCSW
public static final OpenBsdOperatingSystem.PsKeywords NVCSW
-
NIVCSW
public static final OpenBsdOperatingSystem.PsKeywords NIVCSW
-
ARGS
public static final OpenBsdOperatingSystem.PsKeywords ARGS
-
-
Method Detail
-
values
public static OpenBsdOperatingSystem.PsKeywords[] 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 (OpenBsdOperatingSystem.PsKeywords c : OpenBsdOperatingSystem.PsKeywords.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OpenBsdOperatingSystem.PsKeywords 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
-
-