com.akiban.sql.parser
Enum SubqueryNode.SubqueryType
java.lang.Object
java.lang.Enum<SubqueryNode.SubqueryType>
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>
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
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.