public enum TextEditChangeType extends Enum<TextEditChangeType>
| Enum Constant and Description |
|---|
TextEditChangeType_AutoCorrect
The value of this constant is 1
|
TextEditChangeType_Composition
The value of this constant is 2
|
TextEditChangeType_CompositionFinalized
The value of this constant is 3
|
TextEditChangeType_None
The value of this constant is 0
|
| Modifier and Type | Method and Description |
|---|---|
static TextEditChangeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TextEditChangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextEditChangeType TextEditChangeType_None
The value of this constant is 0
public static final TextEditChangeType TextEditChangeType_AutoCorrect
The value of this constant is 1
public static final TextEditChangeType TextEditChangeType_Composition
The value of this constant is 2
public static final TextEditChangeType TextEditChangeType_CompositionFinalized
The value of this constant is 3
public static TextEditChangeType[] values()
for (TextEditChangeType c : TextEditChangeType.values()) System.out.println(c);
public static TextEditChangeType 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 © 2016. All rights reserved.