Package oshi.jna.platform.windows
Enum PowrProf.BATTERY_QUERY_INFORMATION_LEVEL
- java.lang.Object
-
- java.lang.Enum<PowrProf.BATTERY_QUERY_INFORMATION_LEVEL>
-
- oshi.jna.platform.windows.PowrProf.BATTERY_QUERY_INFORMATION_LEVEL
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PowrProf.BATTERY_QUERY_INFORMATION_LEVEL>
- Enclosing interface:
- PowrProf
public static enum PowrProf.BATTERY_QUERY_INFORMATION_LEVEL extends java.lang.Enum<PowrProf.BATTERY_QUERY_INFORMATION_LEVEL>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BatteryDeviceName
BatteryEstimatedTime
BatteryGranularityInformation
BatteryInformation
BatteryManufactureDate
BatteryManufactureName
BatterySerialNumber
BatteryTemperature
BatteryUniqueID
-
Constructor Summary
Constructors Modifier Constructor Description private
BATTERY_QUERY_INFORMATION_LEVEL()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PowrProf.BATTERY_QUERY_INFORMATION_LEVEL
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PowrProf.BATTERY_QUERY_INFORMATION_LEVEL[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BatteryInformation
public static final PowrProf.BATTERY_QUERY_INFORMATION_LEVEL BatteryInformation
-
BatteryGranularityInformation
public static final PowrProf.BATTERY_QUERY_INFORMATION_LEVEL BatteryGranularityInformation
-
BatteryTemperature
public static final PowrProf.BATTERY_QUERY_INFORMATION_LEVEL BatteryTemperature
-
BatteryEstimatedTime
public static final PowrProf.BATTERY_QUERY_INFORMATION_LEVEL BatteryEstimatedTime
-
BatteryDeviceName
public static final PowrProf.BATTERY_QUERY_INFORMATION_LEVEL BatteryDeviceName
-
BatteryManufactureDate
public static final PowrProf.BATTERY_QUERY_INFORMATION_LEVEL BatteryManufactureDate
-
BatteryManufactureName
public static final PowrProf.BATTERY_QUERY_INFORMATION_LEVEL BatteryManufactureName
-
BatteryUniqueID
public static final PowrProf.BATTERY_QUERY_INFORMATION_LEVEL BatteryUniqueID
-
BatterySerialNumber
public static final PowrProf.BATTERY_QUERY_INFORMATION_LEVEL BatterySerialNumber
-
-
Method Detail
-
values
public static PowrProf.BATTERY_QUERY_INFORMATION_LEVEL[] 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 (PowrProf.BATTERY_QUERY_INFORMATION_LEVEL c : PowrProf.BATTERY_QUERY_INFORMATION_LEVEL.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PowrProf.BATTERY_QUERY_INFORMATION_LEVEL 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
-
-