public static enum SubqueryNode.SubqueryType extends java.lang.Enum<SubqueryNode.SubqueryType>
Enum Constant and Description |
---|
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 |
Modifier and Type | Method and Description |
---|---|
static SubqueryNode.SubqueryType |
valueOf(java.lang.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.
|
public static final SubqueryNode.SubqueryType FROM
public static final SubqueryNode.SubqueryType IN
public static final SubqueryNode.SubqueryType NOT_IN
public static final SubqueryNode.SubqueryType EQ_ANY
public static final SubqueryNode.SubqueryType EQ_ALL
public static final SubqueryNode.SubqueryType NE_ANY
public static final SubqueryNode.SubqueryType NE_ALL
public static final SubqueryNode.SubqueryType GT_ANY
public static final SubqueryNode.SubqueryType GT_ALL
public static final SubqueryNode.SubqueryType GE_ANY
public static final SubqueryNode.SubqueryType GE_ALL
public static final SubqueryNode.SubqueryType LT_ANY
public static final SubqueryNode.SubqueryType LT_ALL
public static final SubqueryNode.SubqueryType LE_ANY
public static final SubqueryNode.SubqueryType LE_ALL
public static final SubqueryNode.SubqueryType EXISTS
public static final SubqueryNode.SubqueryType NOT_EXISTS
public static final SubqueryNode.SubqueryType EXPRESSION
public static SubqueryNode.SubqueryType[] values()
for (SubqueryNode.SubqueryType c : SubqueryNode.SubqueryType.values()) System.out.println(c);
public static SubqueryNode.SubqueryType 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.