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