Package com.sun.jna.platform.win32
Enum HighLevelMonitorConfigurationAPI.MC_COLOR_TEMPERATURE
- java.lang.Object
- 
- java.lang.Enum<HighLevelMonitorConfigurationAPI.MC_COLOR_TEMPERATURE>
- 
- com.sun.jna.platform.win32.HighLevelMonitorConfigurationAPI.MC_COLOR_TEMPERATURE
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<HighLevelMonitorConfigurationAPI.MC_COLOR_TEMPERATURE>
 - Enclosing interface:
- HighLevelMonitorConfigurationAPI
 
 public static enum HighLevelMonitorConfigurationAPI.MC_COLOR_TEMPERATURE extends java.lang.Enum<HighLevelMonitorConfigurationAPI.MC_COLOR_TEMPERATURE> Describes a monitor's color temperature.
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classHighLevelMonitorConfigurationAPI.MC_COLOR_TEMPERATURE.ByReferenceDefines a Reference to the enum
 - 
Enum Constant SummaryEnum Constants Enum Constant Description MC_COLOR_TEMPERATURE_10000K10,000 kelvins (K).MC_COLOR_TEMPERATURE_11500K11,500 kelvins (K).MC_COLOR_TEMPERATURE_4000K4,000 kelvins (K).MC_COLOR_TEMPERATURE_5000K5,000 kelvins (K).MC_COLOR_TEMPERATURE_6500K6,500 kelvins (K).MC_COLOR_TEMPERATURE_7500K7,500 kelvins (K).MC_COLOR_TEMPERATURE_8200K8,200 kelvins (K).MC_COLOR_TEMPERATURE_9300K9,300 kelvins (K).MC_COLOR_TEMPERATURE_UNKNOWNUnknown temperature.
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static HighLevelMonitorConfigurationAPI.MC_COLOR_TEMPERATUREvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static HighLevelMonitorConfigurationAPI.MC_COLOR_TEMPERATURE[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
MC_COLOR_TEMPERATURE_UNKNOWNpublic static final HighLevelMonitorConfigurationAPI.MC_COLOR_TEMPERATURE MC_COLOR_TEMPERATURE_UNKNOWN Unknown temperature.
 - 
MC_COLOR_TEMPERATURE_4000Kpublic static final HighLevelMonitorConfigurationAPI.MC_COLOR_TEMPERATURE MC_COLOR_TEMPERATURE_4000K 4,000 kelvins (K).
 - 
MC_COLOR_TEMPERATURE_5000Kpublic static final HighLevelMonitorConfigurationAPI.MC_COLOR_TEMPERATURE MC_COLOR_TEMPERATURE_5000K 5,000 kelvins (K).
 - 
MC_COLOR_TEMPERATURE_6500Kpublic static final HighLevelMonitorConfigurationAPI.MC_COLOR_TEMPERATURE MC_COLOR_TEMPERATURE_6500K 6,500 kelvins (K).
 - 
MC_COLOR_TEMPERATURE_7500Kpublic static final HighLevelMonitorConfigurationAPI.MC_COLOR_TEMPERATURE MC_COLOR_TEMPERATURE_7500K 7,500 kelvins (K).
 - 
MC_COLOR_TEMPERATURE_8200Kpublic static final HighLevelMonitorConfigurationAPI.MC_COLOR_TEMPERATURE MC_COLOR_TEMPERATURE_8200K 8,200 kelvins (K).
 - 
MC_COLOR_TEMPERATURE_9300Kpublic static final HighLevelMonitorConfigurationAPI.MC_COLOR_TEMPERATURE MC_COLOR_TEMPERATURE_9300K 9,300 kelvins (K).
 - 
MC_COLOR_TEMPERATURE_10000Kpublic static final HighLevelMonitorConfigurationAPI.MC_COLOR_TEMPERATURE MC_COLOR_TEMPERATURE_10000K 10,000 kelvins (K).
 - 
MC_COLOR_TEMPERATURE_11500Kpublic static final HighLevelMonitorConfigurationAPI.MC_COLOR_TEMPERATURE MC_COLOR_TEMPERATURE_11500K 11,500 kelvins (K).
 
- 
 - 
Method Detail- 
valuespublic static HighLevelMonitorConfigurationAPI.MC_COLOR_TEMPERATURE[] 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 (HighLevelMonitorConfigurationAPI.MC_COLOR_TEMPERATURE c : HighLevelMonitorConfigurationAPI.MC_COLOR_TEMPERATURE.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static HighLevelMonitorConfigurationAPI.MC_COLOR_TEMPERATURE 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 name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-