public enum IMEModeType extends java.lang.Enum<IMEModeType>
| Enum Constant and Description |
|---|
Disabled
Specifies the mode is disabled.
|
FullAlpha
Specifies full-width alphanumeric.
|
FullHangul
Specifies full-width Hangul.
|
FullKatakana
Specifies the mode is Katakana.
|
HalfAlpha
Specifies half-width alphanumeric.
|
HalfHangul
Specifies Hangul.
|
HalfKatakana
Specifies the mode is half-width Katakana.
|
Hiragana
Specifies the mode is Hiragana.
|
NoControl
Specifie no control.
|
Off
Specifies the mode is off (English mode).
|
On
Specifies the mode is on.
|
| Modifier and Type | Method and Description |
|---|---|
static IMEModeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IMEModeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IMEModeType NoControl
public static final IMEModeType On
public static final IMEModeType Off
public static final IMEModeType Disabled
public static final IMEModeType Hiragana
public static final IMEModeType FullKatakana
public static final IMEModeType HalfKatakana
public static final IMEModeType FullAlpha
public static final IMEModeType HalfAlpha
public static final IMEModeType FullHangul
public static final IMEModeType HalfHangul
public static IMEModeType[] values()
for (IMEModeType c : IMEModeType.values()) System.out.println(c);
public static IMEModeType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null