public static enum QueryEngineImpl.QuerySelectionMode extends java.lang.Enum<QueryEngineImpl.QuerySelectionMode>
QueryEngineImpl
on how to act with respect of the SQL2
optimisation.Enum Constant and Description |
---|
ALTERNATIVE
Will force the computed alternate query to be executed.
|
CHEAPEST
Will execute the cheapest (default).
|
ORIGINAL
Will use the original SQL2 query.
|
Modifier and Type | Method and Description |
---|---|
static QueryEngineImpl.QuerySelectionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QueryEngineImpl.QuerySelectionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryEngineImpl.QuerySelectionMode CHEAPEST
public static final QueryEngineImpl.QuerySelectionMode ORIGINAL
public static final QueryEngineImpl.QuerySelectionMode ALTERNATIVE
public static QueryEngineImpl.QuerySelectionMode[] values()
for (QueryEngineImpl.QuerySelectionMode c : QueryEngineImpl.QuerySelectionMode.values()) System.out.println(c);
public static QueryEngineImpl.QuerySelectionMode 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 null"Copyright © 2010 - 2018 Adobe Systems Incorporated. All Rights Reserved"