public enum IdentifierQuotingStrategy extends java.lang.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(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2000-2019 Sualeh Fatehi. All rights reserved.