public static enum TextKeyListener.Capitalize extends Enum<TextKeyListener.Capitalize>
| Enum Constant and Description |
|---|
CHARACTERS |
NONE |
SENTENCES |
WORDS |
| Modifier and Type | Method and Description |
|---|---|
static TextKeyListener.Capitalize |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TextKeyListener.Capitalize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextKeyListener.Capitalize CHARACTERS
public static final TextKeyListener.Capitalize NONE
public static final TextKeyListener.Capitalize SENTENCES
public static final TextKeyListener.Capitalize WORDS
public static TextKeyListener.Capitalize[] values()
for (TextKeyListener.Capitalize c : TextKeyListener.Capitalize.values()) System.out.println(c);
public static TextKeyListener.Capitalize 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 © 2008-2013. All Rights Reserved.