public enum InputMethodHighlight extends Enum<InputMethodHighlight>
Enum Constant and Description |
---|
SELECTED_CONVERTED
Highlight used for the selected converted input method text
|
SELECTED_RAW
Highlight used for the selected raw input method text
|
UNSELECTED_CONVERTED
Highlight used for the unselected converted input method text
|
UNSELECTED_RAW
Highlight used for the unselected raw input method text
|
Modifier and Type | Method and Description |
---|---|
static InputMethodHighlight |
valueOf(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.
|
public static final InputMethodHighlight UNSELECTED_RAW
public static final InputMethodHighlight SELECTED_RAW
public static final InputMethodHighlight UNSELECTED_CONVERTED
public static final InputMethodHighlight SELECTED_CONVERTED
public static InputMethodHighlight[] values()
for (InputMethodHighlight c : InputMethodHighlight.values()) System.out.println(c);
public static InputMethodHighlight valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.