Enum Class BsdPsThreadKeyword
- All Implemented Interfaces:
Serializable, Comparable<BsdPsThreadKeyword>, Constable
The union of
ps thread (per-LWP) output columns used by the BSD-family OSThread implementations
(FreeBSD, OpenBSD, DragonFly, NetBSD). Each platform declares its own ordered subset (see PS_THREAD_KEYWORDS
on the per-platform OSProcess base) and parses ps output positionally against that subset. The
constant order here is not significant; only the per-platform subset order is.-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic BsdPsThreadKeywordReturns the enum constant of this class with the specified name.static BsdPsThreadKeyword[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TDNAME
-
LWP
-
TID
-
LID
-
STATE
-
ETIME
-
ETIMES
-
CPUTIME
-
SYSTIME
-
TIME
-
TDADDR
-
NIVCSW
-
NVCSW
-
MAJFLT
-
MINFLT
-
PRI
-
ARGS
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-