public static enum TextFormat.TextCase extends Enum<TextFormat.TextCase>
Enum Constant and Description |
---|
AS_IS
Text case should not be changed.
|
CAMEL
Text case should be upper camel case (first letter of every word should be capitalized).
|
LOWER
Text case should be lower case.
|
LOWER_CAMEL
Text case should be lower camel case (first letter of every word but the first word should be capitalized).
|
UPPER
Text case should be upper case.
|
Modifier and Type | Method and Description |
---|---|
static TextFormat.TextCase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TextFormat.TextCase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextFormat.TextCase AS_IS
public static final TextFormat.TextCase CAMEL
public static final TextFormat.TextCase LOWER
public static final TextFormat.TextCase LOWER_CAMEL
public static final TextFormat.TextCase UPPER
public static TextFormat.TextCase[] values()
for (TextFormat.TextCase c : TextFormat.TextCase.values()) System.out.println(c);
public static TextFormat.TextCase 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–2019. All rights reserved.