Package oshi.software.os.unix.freebsd
Enum FreeBsdOperatingSystem.PsKeywords
- java.lang.Object
-
- java.lang.Enum<FreeBsdOperatingSystem.PsKeywords>
-
- oshi.software.os.unix.freebsd.FreeBsdOperatingSystem.PsKeywords
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FreeBsdOperatingSystem.PsKeywords>
- Enclosing class:
- FreeBsdOperatingSystem
static enum FreeBsdOperatingSystem.PsKeywords extends java.lang.Enum<FreeBsdOperatingSystem.PsKeywords>
-
-
Constructor Summary
Constructors Modifier Constructor Description private
PsKeywords()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FreeBsdOperatingSystem.PsKeywords
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FreeBsdOperatingSystem.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 FreeBsdOperatingSystem.PsKeywords STATE
-
PID
public static final FreeBsdOperatingSystem.PsKeywords PID
-
PPID
public static final FreeBsdOperatingSystem.PsKeywords PPID
-
USER
public static final FreeBsdOperatingSystem.PsKeywords USER
-
UID
public static final FreeBsdOperatingSystem.PsKeywords UID
-
GROUP
public static final FreeBsdOperatingSystem.PsKeywords GROUP
-
GID
public static final FreeBsdOperatingSystem.PsKeywords GID
-
NLWP
public static final FreeBsdOperatingSystem.PsKeywords NLWP
-
PRI
public static final FreeBsdOperatingSystem.PsKeywords PRI
-
VSZ
public static final FreeBsdOperatingSystem.PsKeywords VSZ
-
RSS
public static final FreeBsdOperatingSystem.PsKeywords RSS
-
ETIMES
public static final FreeBsdOperatingSystem.PsKeywords ETIMES
-
SYSTIME
public static final FreeBsdOperatingSystem.PsKeywords SYSTIME
-
TIME
public static final FreeBsdOperatingSystem.PsKeywords TIME
-
COMM
public static final FreeBsdOperatingSystem.PsKeywords COMM
-
MAJFLT
public static final FreeBsdOperatingSystem.PsKeywords MAJFLT
-
MINFLT
public static final FreeBsdOperatingSystem.PsKeywords MINFLT
-
NVCSW
public static final FreeBsdOperatingSystem.PsKeywords NVCSW
-
NIVCSW
public static final FreeBsdOperatingSystem.PsKeywords NIVCSW
-
ARGS
public static final FreeBsdOperatingSystem.PsKeywords ARGS
-
-
Method Detail
-
values
public static FreeBsdOperatingSystem.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 (FreeBsdOperatingSystem.PsKeywords c : FreeBsdOperatingSystem.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 FreeBsdOperatingSystem.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
-
-