public static enum ColumnUtils.Escape extends Enum<ColumnUtils.Escape>
| Enum Constant and Description |
|---|
MYSQL
mysql series escape
|
STANDARD
standard escape
|
| Modifier and Type | Field and Description |
|---|---|
char |
value
The Value.
|
| Modifier and Type | Method and Description |
|---|---|
static ColumnUtils.Escape |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColumnUtils.Escape[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnUtils.Escape STANDARD
public static final ColumnUtils.Escape MYSQL
public static ColumnUtils.Escape[] values()
for (ColumnUtils.Escape c : ColumnUtils.Escape.values()) System.out.println(c);
public static ColumnUtils.Escape 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 © 2022 Seata. All rights reserved.