- All Implemented Interfaces:
- Serializable,- Comparable<InputMethodHighlight>,- Constable
public enum InputMethodHighlight extends Enum<InputMethodHighlight>
The enum that contains the input method text highlights.
- Since:
- JavaFX 2.0
- 
Nested Class SummaryNested classes/interfaces declared in class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum Constants Enum Constant Description SELECTED_CONVERTEDHighlight used for the selected converted input method textSELECTED_RAWHighlight used for the selected raw input method textUNSELECTED_CONVERTEDHighlight used for the unselected converted input method textUNSELECTED_RAWHighlight used for the unselected raw input method text
- 
Method SummaryModifier and Type Method Description static InputMethodHighlightvalueOf(String name)Returns the enum constant of this type with the specified name.static InputMethodHighlight[]values()Returns an array containing the constants of this enum type, in the order they are declared.
- 
Enum Constant Details- 
UNSELECTED_RAWHighlight used for the unselected raw input method text
- 
SELECTED_RAWHighlight used for the selected raw input method text
- 
UNSELECTED_CONVERTEDHighlight used for the unselected converted input method text
- 
SELECTED_CONVERTEDHighlight used for the selected converted input method text
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
 
- 
valueOfReturns 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:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
-