Package com.sun.jna.platform.win32
Enum HighLevelMonitorConfigurationAPI.MC_GAIN_TYPE
- java.lang.Object
- 
- java.lang.Enum<HighLevelMonitorConfigurationAPI.MC_GAIN_TYPE>
- 
- com.sun.jna.platform.win32.HighLevelMonitorConfigurationAPI.MC_GAIN_TYPE
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<HighLevelMonitorConfigurationAPI.MC_GAIN_TYPE>
 - Enclosing interface:
- HighLevelMonitorConfigurationAPI
 
 public static enum HighLevelMonitorConfigurationAPI.MC_GAIN_TYPE extends java.lang.Enum<HighLevelMonitorConfigurationAPI.MC_GAIN_TYPE> Specifies whether to get or set a monitor's red, green, or blue gain.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description MC_BLUE_GAINBlue gainMC_GREEN_GAINGreen gainMC_RED_GAINRed gain
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static HighLevelMonitorConfigurationAPI.MC_GAIN_TYPEvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static HighLevelMonitorConfigurationAPI.MC_GAIN_TYPE[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
MC_RED_GAINpublic static final HighLevelMonitorConfigurationAPI.MC_GAIN_TYPE MC_RED_GAIN Red gain
 - 
MC_GREEN_GAINpublic static final HighLevelMonitorConfigurationAPI.MC_GAIN_TYPE MC_GREEN_GAIN Green gain
 - 
MC_BLUE_GAINpublic static final HighLevelMonitorConfigurationAPI.MC_GAIN_TYPE MC_BLUE_GAIN Blue gain
 
- 
 - 
Method Detail- 
valuespublic static HighLevelMonitorConfigurationAPI.MC_GAIN_TYPE[] 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_GAIN_TYPE c : HighLevelMonitorConfigurationAPI.MC_GAIN_TYPE.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_GAIN_TYPE 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
 
 
- 
 
-