public static enum TableDefConfig.NameStyle extends Enum<TableDefConfig.NameStyle>
| Enum Constant and Description |
|---|
LOWER_CAMEL_CASE |
LOWER_CASE |
UPPER_CAMEL_CASE |
UPPER_CASE |
| Modifier and Type | Method and Description |
|---|---|
static TableDefConfig.NameStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableDefConfig.NameStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableDefConfig.NameStyle UPPER_CASE
public static final TableDefConfig.NameStyle LOWER_CASE
public static final TableDefConfig.NameStyle UPPER_CAMEL_CASE
public static final TableDefConfig.NameStyle LOWER_CAMEL_CASE
public static TableDefConfig.NameStyle[] values()
for (TableDefConfig.NameStyle c : TableDefConfig.NameStyle.values()) System.out.println(c);
public static TableDefConfig.NameStyle 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 © 2024. All rights reserved.