Enum Class BsdPsKeyword
- All Implemented Interfaces:
Serializable, Comparable<BsdPsKeyword>, Constable
The union of
ps output columns used by the BSD-family OSProcess implementations (FreeBSD, OpenBSD,
DragonFly, NetBSD). Each platform declares its own ordered subset (see PS_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 BsdPsKeywordReturns the enum constant of this class with the specified name.static BsdPsKeyword[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
STATE
-
PID
-
PPID
-
USER
-
UID
-
GROUP
-
GID
-
RGID
-
NLWP
-
PRI
-
VSZ
-
RSS
-
ETIME
-
ETIMES
-
CPUTIME
-
SYSTIME
-
TIME
-
COMM
-
UCOMM
-
MAJFLT
-
MINFLT
-
NVCSW
-
NIVCSW
-
ARGS
-
COMMAND
-
-
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
-