Package oshi.driver.windows.wmi
Enum Win32PhysicalMemory.PhysicalMemoryPropertyWin8
- java.lang.Object
-
- java.lang.Enum<Win32PhysicalMemory.PhysicalMemoryPropertyWin8>
-
- oshi.driver.windows.wmi.Win32PhysicalMemory.PhysicalMemoryPropertyWin8
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Win32PhysicalMemory.PhysicalMemoryPropertyWin8>
- Enclosing class:
- Win32PhysicalMemory
public static enum Win32PhysicalMemory.PhysicalMemoryPropertyWin8 extends java.lang.Enum<Win32PhysicalMemory.PhysicalMemoryPropertyWin8>
Physical Memory properties for Win8 and earlier.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BANKLABEL
CAPACITY
MANUFACTURER
MEMORYTYPE
PARTNUMBER
SERIALNUMBER
SPEED
-
Constructor Summary
Constructors Modifier Constructor Description private
PhysicalMemoryPropertyWin8()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Win32PhysicalMemory.PhysicalMemoryPropertyWin8
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Win32PhysicalMemory.PhysicalMemoryPropertyWin8[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BANKLABEL
public static final Win32PhysicalMemory.PhysicalMemoryPropertyWin8 BANKLABEL
-
CAPACITY
public static final Win32PhysicalMemory.PhysicalMemoryPropertyWin8 CAPACITY
-
SPEED
public static final Win32PhysicalMemory.PhysicalMemoryPropertyWin8 SPEED
-
MANUFACTURER
public static final Win32PhysicalMemory.PhysicalMemoryPropertyWin8 MANUFACTURER
-
MEMORYTYPE
public static final Win32PhysicalMemory.PhysicalMemoryPropertyWin8 MEMORYTYPE
-
PARTNUMBER
public static final Win32PhysicalMemory.PhysicalMemoryPropertyWin8 PARTNUMBER
-
SERIALNUMBER
public static final Win32PhysicalMemory.PhysicalMemoryPropertyWin8 SERIALNUMBER
-
-
Method Detail
-
values
public static Win32PhysicalMemory.PhysicalMemoryPropertyWin8[] 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 (Win32PhysicalMemory.PhysicalMemoryPropertyWin8 c : Win32PhysicalMemory.PhysicalMemoryPropertyWin8.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Win32PhysicalMemory.PhysicalMemoryPropertyWin8 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
-
-