com.akiban.sql.parser
Enum SubqueryNode.SubqueryType

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

public static enum SubqueryNode.SubqueryType
extends Enum<SubqueryNode.SubqueryType>


Enum Constant Summary
EQ_ALL
           
EQ_ANY
           
EXISTS
           
EXPRESSION
           
FROM
           
GE_ALL
           
GE_ANY
           
GT_ALL
           
GT_ANY
           
IN
           
LE_ALL
           
LE_ANY
           
LT_ALL
           
LT_ANY
           
NE_ALL
           
NE_ANY
           
NOT_EXISTS
           
NOT_IN
           
 
Method Summary
static SubqueryNode.SubqueryType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SubqueryNode.SubqueryType[] 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

FROM

public static final SubqueryNode.SubqueryType FROM

IN

public static final SubqueryNode.SubqueryType IN

NOT_IN

public static final SubqueryNode.SubqueryType NOT_IN

EQ_ANY

public static final SubqueryNode.SubqueryType EQ_ANY

EQ_ALL

public static final SubqueryNode.SubqueryType EQ_ALL

NE_ANY

public static final SubqueryNode.SubqueryType NE_ANY

NE_ALL

public static final SubqueryNode.SubqueryType NE_ALL

GT_ANY

public static final SubqueryNode.SubqueryType GT_ANY

GT_ALL

public static final SubqueryNode.SubqueryType GT_ALL

GE_ANY

public static final SubqueryNode.SubqueryType GE_ANY

GE_ALL

public static final SubqueryNode.SubqueryType GE_ALL

LT_ANY

public static final SubqueryNode.SubqueryType LT_ANY

LT_ALL

public static final SubqueryNode.SubqueryType LT_ALL

LE_ANY

public static final SubqueryNode.SubqueryType LE_ANY

LE_ALL

public static final SubqueryNode.SubqueryType LE_ALL

EXISTS

public static final SubqueryNode.SubqueryType EXISTS

NOT_EXISTS

public static final SubqueryNode.SubqueryType NOT_EXISTS

EXPRESSION

public static final SubqueryNode.SubqueryType EXPRESSION
Method Detail

values

public static SubqueryNode.SubqueryType[] 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 (SubqueryNode.SubqueryType c : SubqueryNode.SubqueryType.values())
    System.out.println(c);

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

valueOf

public static SubqueryNode.SubqueryType 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.