public enum SQLParserFeature extends java.lang.Enum<SQLParserFeature>
Enum Constant and Description |
---|
DIV_OPERATOR |
DOUBLE_QUOTED_STRING |
GEO_INDEX_DEF_FUNC |
GROUPING |
INFIX_BIT_OPERATORS |
INFIX_LOGICAL_OPERATORS |
INFIX_MOD |
MYSQL_COLUMN_AS_FUNCS |
MYSQL_HINTS |
MYSQL_INTERVAL |
MYSQL_LEFT_RIGHT_FUNC |
UNSIGNED |
Modifier and Type | Method and Description |
---|---|
static SQLParserFeature |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SQLParserFeature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SQLParserFeature GEO_INDEX_DEF_FUNC
public static final SQLParserFeature MYSQL_COLUMN_AS_FUNCS
public static final SQLParserFeature MYSQL_LEFT_RIGHT_FUNC
public static final SQLParserFeature DIV_OPERATOR
public static final SQLParserFeature GROUPING
public static final SQLParserFeature MYSQL_HINTS
public static final SQLParserFeature MYSQL_INTERVAL
public static final SQLParserFeature UNSIGNED
public static final SQLParserFeature INFIX_MOD
public static final SQLParserFeature INFIX_BIT_OPERATORS
public static final SQLParserFeature INFIX_LOGICAL_OPERATORS
public static final SQLParserFeature DOUBLE_QUOTED_STRING
public static SQLParserFeature[] values()
for (SQLParserFeature c : SQLParserFeature.values()) System.out.println(c);
public static SQLParserFeature 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 © 2013. All Rights Reserved.