public enum KeyConversionConfig extends Enum<KeyConversionConfig>
| Enum Constant and Description |
|---|
hump2UnderscoreCapital
驼峰转下划线——大写
|
hump2UnderscoreLower
驼峰转下划线——小写
|
nothing
不需要转换
|
| Modifier and Type | Method and Description |
|---|---|
static KeyConversionConfig |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeyConversionConfig[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyConversionConfig hump2UnderscoreLower
public static final KeyConversionConfig hump2UnderscoreCapital
public static final KeyConversionConfig nothing
public static KeyConversionConfig[] values()
for (KeyConversionConfig c : KeyConversionConfig.values()) System.out.println(c);
public static KeyConversionConfig 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.