public enum MapSqlSetting extends Enum<MapSqlSetting>
| Enum Constant and Description |
|---|
IsIncludeEmptyString
include empty string.value is 'true' or 'false',default is 'false'
|
IsIncludeNull
include Null.value is 'true' or 'false',default is 'false'
|
IsNamingTransfer
Is naming transfer.
|
IsTransferTrueFalseStringToBooleanType
"true" and "false" String transfer to Boolean Type.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static MapSqlSetting |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MapSqlSetting[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapSqlSetting IsNamingTransfer
public static final MapSqlSetting IsIncludeNull
public static final MapSqlSetting IsIncludeEmptyString
public static final MapSqlSetting IsTransferTrueFalseStringToBooleanType
public static MapSqlSetting[] values()
for (MapSqlSetting c : MapSqlSetting.values()) System.out.println(c);
public static MapSqlSetting 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 nullpublic String getName()
Copyright © 2022. All rights reserved.