public static enum TypeNameClassifier.JavaCaseFormat extends java.lang.Enum<TypeNameClassifier.JavaCaseFormat>
| Enum Constant and Description |
|---|
LOWER_CAMEL |
LOWERCASE |
UPPER_CAMEL |
UPPERCASE |
| Modifier and Type | Method and Description |
|---|---|
static TypeNameClassifier.JavaCaseFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TypeNameClassifier.JavaCaseFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeNameClassifier.JavaCaseFormat UPPERCASE
public static final TypeNameClassifier.JavaCaseFormat LOWERCASE
public static final TypeNameClassifier.JavaCaseFormat UPPER_CAMEL
public static final TypeNameClassifier.JavaCaseFormat LOWER_CAMEL
public static TypeNameClassifier.JavaCaseFormat[] values()
for (TypeNameClassifier.JavaCaseFormat c : TypeNameClassifier.JavaCaseFormat.values()) System.out.println(c);
public static TypeNameClassifier.JavaCaseFormat 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 nullCopyright © 2015-2018 Google Inc.. All Rights Reserved.