public static enum CodegenConstants.ENUM_PROPERTY_NAMING_TYPE extends Enum<CodegenConstants.ENUM_PROPERTY_NAMING_TYPE>
| Enum Constant and Description |
|---|
camelCase |
original |
PascalCase |
snake_case |
UPPERCASE |
| Modifier and Type | Method and Description |
|---|---|
static CodegenConstants.ENUM_PROPERTY_NAMING_TYPE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CodegenConstants.ENUM_PROPERTY_NAMING_TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CodegenConstants.ENUM_PROPERTY_NAMING_TYPE camelCase
public static final CodegenConstants.ENUM_PROPERTY_NAMING_TYPE PascalCase
public static final CodegenConstants.ENUM_PROPERTY_NAMING_TYPE snake_case
public static final CodegenConstants.ENUM_PROPERTY_NAMING_TYPE original
public static final CodegenConstants.ENUM_PROPERTY_NAMING_TYPE UPPERCASE
public static CodegenConstants.ENUM_PROPERTY_NAMING_TYPE[] values()
for (CodegenConstants.ENUM_PROPERTY_NAMING_TYPE c : CodegenConstants.ENUM_PROPERTY_NAMING_TYPE.values()) System.out.println(c);
public static CodegenConstants.ENUM_PROPERTY_NAMING_TYPE 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 © 2020. All rights reserved.