public static enum OnTextChanged.Callback extends java.lang.Enum<OnTextChanged.Callback>
TextWatcher callback methods.| Enum Constant and Description |
|---|
AFTER_TEXT_CHANGED
TextWatcher.afterTextChanged(android.text.Editable) |
BEFORE_TEXT_CHANGED
TextWatcher.beforeTextChanged(CharSequence, int, int, int) |
TEXT_CHANGED
TextWatcher.onTextChanged(CharSequence, int, int, int) |
| Modifier and Type | Method and Description |
|---|---|
static OnTextChanged.Callback |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OnTextChanged.Callback[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OnTextChanged.Callback TEXT_CHANGED
TextWatcher.onTextChanged(CharSequence, int, int, int)public static final OnTextChanged.Callback BEFORE_TEXT_CHANGED
TextWatcher.beforeTextChanged(CharSequence, int, int, int)public static final OnTextChanged.Callback AFTER_TEXT_CHANGED
TextWatcher.afterTextChanged(android.text.Editable)public static OnTextChanged.Callback[] values()
for (OnTextChanged.Callback c : OnTextChanged.Callback.values()) System.out.println(c);
public static OnTextChanged.Callback 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