Uses of Class
oshi.software.os.OSProcess.State
-
Packages that use OSProcess.State Package Description oshi.driver.linux.proc Provides functions to query statistics in the Linux /proc pseudo-filesystemoshi.driver.mac Provides functions to query Mac infooshi.software.os [oshi-core API] Provides cross-platform implementation to retrieve OS, FileSystem, and Process informationoshi.software.os.linux Provides information about Software and OS on Linuxoshi.software.os.mac Provides information about Software and OS on macOSoshi.software.os.unix.aix Provides information about Software and OS on AIXoshi.software.os.unix.freebsd Provides information about Software and OS on FreeBSDoshi.software.os.unix.openbsd Provides information about Software and OS on OpenBSDoshi.software.os.unix.solaris Provides information about Software and OS on Solarisoshi.software.os.windows Provides information about Software and OS on Windows -
-
Uses of OSProcess.State in oshi.driver.linux.proc
Methods in oshi.driver.linux.proc that return OSProcess.State Modifier and Type Method Description static OSProcess.State
ProcessStat. getState(char stateValue)
Returns Enum STATE for the state value obtained from status file of any process/thread. -
Uses of OSProcess.State in oshi.driver.mac
Fields in oshi.driver.mac declared as OSProcess.State Modifier and Type Field Description private OSProcess.State
ThreadInfo.ThreadStats. state
Methods in oshi.driver.mac that return OSProcess.State Modifier and Type Method Description OSProcess.State
ThreadInfo.ThreadStats. getState()
-
Uses of OSProcess.State in oshi.software.os
Methods in oshi.software.os that return OSProcess.State Modifier and Type Method Description OSProcess.State
OSProcess. getState()
Gets the process state.OSProcess.State
OSThread. getState()
Gets the execution state of the task/thread.static OSProcess.State
OSProcess.State. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static OSProcess.State[]
OSProcess.State. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of OSProcess.State in oshi.software.os.linux
Fields in oshi.software.os.linux declared as OSProcess.State Modifier and Type Field Description private OSProcess.State
LinuxOSProcess. state
private OSProcess.State
LinuxOSThread. state
Methods in oshi.software.os.linux that return OSProcess.State Modifier and Type Method Description OSProcess.State
LinuxOSProcess. getState()
OSProcess.State
LinuxOSThread. getState()
-
Uses of OSProcess.State in oshi.software.os.mac
Fields in oshi.software.os.mac declared as OSProcess.State Modifier and Type Field Description private OSProcess.State
MacOSProcess. state
private OSProcess.State
MacOSThread. state
Methods in oshi.software.os.mac that return OSProcess.State Modifier and Type Method Description OSProcess.State
MacOSProcess. getState()
OSProcess.State
MacOSThread. getState()
Constructors in oshi.software.os.mac with parameters of type OSProcess.State Constructor Description MacOSThread(int pid, int threadId, OSProcess.State state, long kernelTime, long userTime, long startTime, long upTime, int priority)
-
Uses of OSProcess.State in oshi.software.os.unix.aix
Fields in oshi.software.os.unix.aix declared as OSProcess.State Modifier and Type Field Description private OSProcess.State
AixOSProcess. state
private OSProcess.State
AixOSThread. state
Methods in oshi.software.os.unix.aix that return OSProcess.State Modifier and Type Method Description OSProcess.State
AixOSProcess. getState()
OSProcess.State
AixOSThread. getState()
(package private) static OSProcess.State
AixOSProcess. getStateFromOutput(char stateValue)
Returns Enum STATE for the state value obtained from status string of thread/process. -
Uses of OSProcess.State in oshi.software.os.unix.freebsd
Fields in oshi.software.os.unix.freebsd declared as OSProcess.State Modifier and Type Field Description private OSProcess.State
FreeBsdOSProcess. state
private OSProcess.State
FreeBsdOSThread. state
Methods in oshi.software.os.unix.freebsd that return OSProcess.State Modifier and Type Method Description OSProcess.State
FreeBsdOSProcess. getState()
OSProcess.State
FreeBsdOSThread. getState()
-
Uses of OSProcess.State in oshi.software.os.unix.openbsd
Fields in oshi.software.os.unix.openbsd declared as OSProcess.State Modifier and Type Field Description private OSProcess.State
OpenBsdOSProcess. state
private OSProcess.State
OpenBsdOSThread. state
Methods in oshi.software.os.unix.openbsd that return OSProcess.State Modifier and Type Method Description OSProcess.State
OpenBsdOSProcess. getState()
OSProcess.State
OpenBsdOSThread. getState()
-
Uses of OSProcess.State in oshi.software.os.unix.solaris
Fields in oshi.software.os.unix.solaris declared as OSProcess.State Modifier and Type Field Description private OSProcess.State
SolarisOSProcess. state
private OSProcess.State
SolarisOSThread. state
Methods in oshi.software.os.unix.solaris that return OSProcess.State Modifier and Type Method Description OSProcess.State
SolarisOSProcess. getState()
OSProcess.State
SolarisOSThread. getState()
(package private) static OSProcess.State
SolarisOSProcess. getStateFromOutput(char stateValue)
Returns Enum STATE for the state value obtained from status string of thread/process. -
Uses of OSProcess.State in oshi.software.os.windows
Fields in oshi.software.os.windows declared as OSProcess.State Modifier and Type Field Description private OSProcess.State
WindowsOSProcess. state
private OSProcess.State
WindowsOSThread. state
Methods in oshi.software.os.windows that return OSProcess.State Modifier and Type Method Description OSProcess.State
WindowsOSProcess. getState()
OSProcess.State
WindowsOSThread. getState()
-