public static enum OnTextChanged.Callback extends 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(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(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 © 2013-2015. All Rights Reserved.