Package com.sun.jna.platform.win32
Enum HighLevelMonitorConfigurationAPI.MC_DISPLAY_TECHNOLOGY_TYPE
- java.lang.Object
- 
- java.lang.Enum<HighLevelMonitorConfigurationAPI.MC_DISPLAY_TECHNOLOGY_TYPE>
- 
- com.sun.jna.platform.win32.HighLevelMonitorConfigurationAPI.MC_DISPLAY_TECHNOLOGY_TYPE
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<HighLevelMonitorConfigurationAPI.MC_DISPLAY_TECHNOLOGY_TYPE>
 - Enclosing interface:
- HighLevelMonitorConfigurationAPI
 
 public static enum HighLevelMonitorConfigurationAPI.MC_DISPLAY_TECHNOLOGY_TYPE extends java.lang.Enum<HighLevelMonitorConfigurationAPI.MC_DISPLAY_TECHNOLOGY_TYPE> Identifies monitor display technologies.
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classHighLevelMonitorConfigurationAPI.MC_DISPLAY_TECHNOLOGY_TYPE.ByReferenceDefines a Reference to the enum
 - 
Enum Constant SummaryEnum Constants Enum Constant Description MC_APERTURE_GRILL_CATHODE_RAY_TUBEAperture-grill CRT.MC_ELECTROLUMINESCENTElectroluminescent display.MC_FIELD_EMISSION_DEVICEField emission device (FED) display.MC_LIQUID_CRYSTAL_ON_SILICONLiquid crystal on silicon (LCOS) display.MC_MICROELECTROMECHANICALMicroelectromechanical display.MC_ORGANIC_LIGHT_EMITTING_DIODEOrganic light emitting diode (LED) display.MC_PLASMAPlasma display.MC_SHADOW_MASK_CATHODE_RAY_TUBEShadow-mask cathode ray tube (CRT).MC_THIN_FILM_TRANSISTORThin-film transistor (TFT) display.
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static HighLevelMonitorConfigurationAPI.MC_DISPLAY_TECHNOLOGY_TYPEvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static HighLevelMonitorConfigurationAPI.MC_DISPLAY_TECHNOLOGY_TYPE[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
MC_SHADOW_MASK_CATHODE_RAY_TUBEpublic static final HighLevelMonitorConfigurationAPI.MC_DISPLAY_TECHNOLOGY_TYPE MC_SHADOW_MASK_CATHODE_RAY_TUBE Shadow-mask cathode ray tube (CRT).
 - 
MC_APERTURE_GRILL_CATHODE_RAY_TUBEpublic static final HighLevelMonitorConfigurationAPI.MC_DISPLAY_TECHNOLOGY_TYPE MC_APERTURE_GRILL_CATHODE_RAY_TUBE Aperture-grill CRT.
 - 
MC_THIN_FILM_TRANSISTORpublic static final HighLevelMonitorConfigurationAPI.MC_DISPLAY_TECHNOLOGY_TYPE MC_THIN_FILM_TRANSISTOR Thin-film transistor (TFT) display.
 - 
MC_LIQUID_CRYSTAL_ON_SILICONpublic static final HighLevelMonitorConfigurationAPI.MC_DISPLAY_TECHNOLOGY_TYPE MC_LIQUID_CRYSTAL_ON_SILICON Liquid crystal on silicon (LCOS) display.
 - 
MC_PLASMApublic static final HighLevelMonitorConfigurationAPI.MC_DISPLAY_TECHNOLOGY_TYPE MC_PLASMA Plasma display.
 - 
MC_ORGANIC_LIGHT_EMITTING_DIODEpublic static final HighLevelMonitorConfigurationAPI.MC_DISPLAY_TECHNOLOGY_TYPE MC_ORGANIC_LIGHT_EMITTING_DIODE Organic light emitting diode (LED) display.
 - 
MC_ELECTROLUMINESCENTpublic static final HighLevelMonitorConfigurationAPI.MC_DISPLAY_TECHNOLOGY_TYPE MC_ELECTROLUMINESCENT Electroluminescent display.
 - 
MC_MICROELECTROMECHANICALpublic static final HighLevelMonitorConfigurationAPI.MC_DISPLAY_TECHNOLOGY_TYPE MC_MICROELECTROMECHANICAL Microelectromechanical display.
 - 
MC_FIELD_EMISSION_DEVICEpublic static final HighLevelMonitorConfigurationAPI.MC_DISPLAY_TECHNOLOGY_TYPE MC_FIELD_EMISSION_DEVICE Field emission device (FED) display.
 
- 
 - 
Method Detail- 
valuespublic static HighLevelMonitorConfigurationAPI.MC_DISPLAY_TECHNOLOGY_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_DISPLAY_TECHNOLOGY_TYPE c : HighLevelMonitorConfigurationAPI.MC_DISPLAY_TECHNOLOGY_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_DISPLAY_TECHNOLOGY_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
 
 
- 
 
-