com.akiban.sql.parser
Enum SQLParserFeature

java.lang.Object
  extended by java.lang.Enum<SQLParserFeature>
      extended by com.akiban.sql.parser.SQLParserFeature
All Implemented Interfaces:
Serializable, Comparable<SQLParserFeature>

public enum SQLParserFeature
extends Enum<SQLParserFeature>


Enum Constant Summary
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
           
 
Method Summary
static SQLParserFeature valueOf(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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

GEO_INDEX_DEF_FUNC

public static final SQLParserFeature GEO_INDEX_DEF_FUNC

MYSQL_COLUMN_AS_FUNCS

public static final SQLParserFeature MYSQL_COLUMN_AS_FUNCS

MYSQL_LEFT_RIGHT_FUNC

public static final SQLParserFeature MYSQL_LEFT_RIGHT_FUNC

DIV_OPERATOR

public static final SQLParserFeature DIV_OPERATOR

GROUPING

public static final SQLParserFeature GROUPING

MYSQL_HINTS

public static final SQLParserFeature MYSQL_HINTS

MYSQL_INTERVAL

public static final SQLParserFeature MYSQL_INTERVAL

UNSIGNED

public static final SQLParserFeature UNSIGNED

INFIX_MOD

public static final SQLParserFeature INFIX_MOD

INFIX_BIT_OPERATORS

public static final SQLParserFeature INFIX_BIT_OPERATORS

INFIX_LOGICAL_OPERATORS

public static final SQLParserFeature INFIX_LOGICAL_OPERATORS

DOUBLE_QUOTED_STRING

public static final SQLParserFeature DOUBLE_QUOTED_STRING
Method Detail

values

public static SQLParserFeature[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (SQLParserFeature c : SQLParserFeature.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SQLParserFeature valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2013 Akiban Technologies, Inc. All rights reserved.