Package oshi.software.os.unix.freebsd
Enum FreeBsdOSProcess.PsThreadColumns
- java.lang.Object
-
- java.lang.Enum<FreeBsdOSProcess.PsThreadColumns>
-
- oshi.software.os.unix.freebsd.FreeBsdOSProcess.PsThreadColumns
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FreeBsdOSProcess.PsThreadColumns>
- Enclosing class:
- FreeBsdOSProcess
static enum FreeBsdOSProcess.PsThreadColumns extends java.lang.Enum<FreeBsdOSProcess.PsThreadColumns>
-
-
Constructor Summary
Constructors Modifier Constructor Description private
PsThreadColumns()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FreeBsdOSProcess.PsThreadColumns
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FreeBsdOSProcess.PsThreadColumns[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TDNAME
public static final FreeBsdOSProcess.PsThreadColumns TDNAME
-
LWP
public static final FreeBsdOSProcess.PsThreadColumns LWP
-
STATE
public static final FreeBsdOSProcess.PsThreadColumns STATE
-
ETIMES
public static final FreeBsdOSProcess.PsThreadColumns ETIMES
-
SYSTIME
public static final FreeBsdOSProcess.PsThreadColumns SYSTIME
-
TIME
public static final FreeBsdOSProcess.PsThreadColumns TIME
-
TDADDR
public static final FreeBsdOSProcess.PsThreadColumns TDADDR
-
NIVCSW
public static final FreeBsdOSProcess.PsThreadColumns NIVCSW
-
NVCSW
public static final FreeBsdOSProcess.PsThreadColumns NVCSW
-
MAJFLT
public static final FreeBsdOSProcess.PsThreadColumns MAJFLT
-
MINFLT
public static final FreeBsdOSProcess.PsThreadColumns MINFLT
-
PRI
public static final FreeBsdOSProcess.PsThreadColumns PRI
-
-
Method Detail
-
values
public static FreeBsdOSProcess.PsThreadColumns[] 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 (FreeBsdOSProcess.PsThreadColumns c : FreeBsdOSProcess.PsThreadColumns.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FreeBsdOSProcess.PsThreadColumns 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
-
-