|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<QueryExecutionPlan.Type>
org.xcmis.search.query.plan.QueryExecutionPlan.Type
public static enum QueryExecutionPlan.Type
An enumeration dictating the type of plan tree nodes.
| Enum Constant Summary | |
|---|---|
JOIN
|
|
LIMIT
|
|
PROJECT
|
|
SELECTOR
|
|
SORT
|
|
WHERE
|
|
| Method Summary | |
|---|---|
static QueryExecutionPlan.Type |
forSymbol(String symbol)
Attempt to find the Type given a symbol. |
String |
getSymbol()
Get the symbol representation of this node type. |
String |
toString()
|
static QueryExecutionPlan.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static QueryExecutionPlan.Type[] |
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, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final QueryExecutionPlan.Type JOIN
public static final QueryExecutionPlan.Type SELECTOR
public static final QueryExecutionPlan.Type PROJECT
public static final QueryExecutionPlan.Type WHERE
public static final QueryExecutionPlan.Type SORT
public static final QueryExecutionPlan.Type LIMIT
| Method Detail |
|---|
public static QueryExecutionPlan.Type[] values()
for (QueryExecutionPlan.Type c : QueryExecutionPlan.Type.values()) System.out.println(c);
public static QueryExecutionPlan.Type valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic String getSymbol()
public String toString()
toString in class Enum<QueryExecutionPlan.Type>Enum.toString()public static QueryExecutionPlan.Type forSymbol(String symbol)
symbol - the symbol
IllegalArgumentException - if the symbol is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||