public enum Lex extends Enum<Lex>
| Enum Constant and Description |
|---|
JAVA
Lexical policy similar to Java.
|
MYSQL
Lexical policy similar to MySQL.
|
ORACLE
Lexical policy similar to Oracle.
|
SQL_SERVER
Lexical policy similar to Microsoft SQL Server.
|
| Modifier and Type | Field and Description |
|---|---|
boolean |
caseSensitive |
Casing |
quotedCasing |
Quoting |
quoting |
Casing |
unquotedCasing |
| Modifier and Type | Method and Description |
|---|---|
static Lex |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Lex[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Lex ORACLE
public static final Lex MYSQL
public static final Lex SQL_SERVER
public static final Lex JAVA
public final Quoting quoting
public final Casing unquotedCasing
public final Casing quotedCasing
public final boolean caseSensitive
public static Lex[] values()
for (Lex c : Lex.values()) System.out.println(c);
public static Lex 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 © 2012–2015 The Apache Software Foundation. All rights reserved.