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