Package oshi.driver.windows.perfmon
Enum MemoryInformation.PageSwapProperty
- java.lang.Object
-
- java.lang.Enum<MemoryInformation.PageSwapProperty>
-
- oshi.driver.windows.perfmon.MemoryInformation.PageSwapProperty
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MemoryInformation.PageSwapProperty>
,PerfCounterQuery.PdhCounterProperty
- Enclosing class:
- MemoryInformation
public static enum MemoryInformation.PageSwapProperty extends java.lang.Enum<MemoryInformation.PageSwapProperty> implements PerfCounterQuery.PdhCounterProperty
For pages in/out
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PAGESINPUTPERSEC
PAGESOUTPUTPERSEC
-
Constructor Summary
Constructors Modifier Constructor Description private
PageSwapProperty(java.lang.String instance, java.lang.String counter)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getCounter()
java.lang.String
getInstance()
static MemoryInformation.PageSwapProperty
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MemoryInformation.PageSwapProperty[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PAGESINPUTPERSEC
public static final MemoryInformation.PageSwapProperty PAGESINPUTPERSEC
-
PAGESOUTPUTPERSEC
public static final MemoryInformation.PageSwapProperty PAGESOUTPUTPERSEC
-
-
Method Detail
-
values
public static MemoryInformation.PageSwapProperty[] 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 (MemoryInformation.PageSwapProperty c : MemoryInformation.PageSwapProperty.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MemoryInformation.PageSwapProperty 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
-
getInstance
public java.lang.String getInstance()
- Specified by:
getInstance
in interfacePerfCounterQuery.PdhCounterProperty
- Returns:
- Returns the instance.
-
getCounter
public java.lang.String getCounter()
- Specified by:
getCounter
in interfacePerfCounterQuery.PdhCounterProperty
- Returns:
- Returns the counter.
-
-