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