Package oshi.driver.windows.registry
Class ProcessWtsData.WtsInfo
- java.lang.Object
-
- oshi.driver.windows.registry.ProcessWtsData.WtsInfo
-
- Enclosing class:
- ProcessWtsData
@Immutable public static class ProcessWtsData.WtsInfo extends java.lang.Object
Class to encapsulate data from WTS Process Info
-
-
Field Summary
Fields Modifier and Type Field Description private long
kernelTime
private java.lang.String
name
private long
openFiles
private java.lang.String
path
private int
threadCount
private long
userTime
private long
virtualSize
-
Constructor Summary
Constructors Constructor Description WtsInfo(java.lang.String name, java.lang.String path, int threadCount, long virtualSize, long kernelTime, long userTime, long openFiles)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getKernelTime()
java.lang.String
getName()
long
getOpenFiles()
java.lang.String
getPath()
int
getThreadCount()
long
getUserTime()
long
getVirtualSize()
-
-
-
Method Detail
-
getName
public java.lang.String getName()
- Returns:
- the name
-
getPath
public java.lang.String getPath()
- Returns:
- the path
-
getThreadCount
public int getThreadCount()
- Returns:
- the threadCount
-
getVirtualSize
public long getVirtualSize()
- Returns:
- the virtualSize
-
getKernelTime
public long getKernelTime()
- Returns:
- the kernelTime
-
getUserTime
public long getUserTime()
- Returns:
- the userTime
-
getOpenFiles
public long getOpenFiles()
- Returns:
- the openFiles
-
-