protected static enum SqlAbstractParserImpl.ExprContext extends Enum<SqlAbstractParserImpl.ExprContext>
| Enum Constant and Description |
|---|
ACCEPT_ALL
Accept any kind of expression in this context.
|
ACCEPT_CURSOR
Accept only CURSOR constructors, parenthesized queries, or non-query
expressions in this context.
|
ACCEPT_NONCURSOR
Accept any kind of expression in this context, with the exception of
CURSOR constructors.
|
ACCEPT_NONQUERY
Accept only non-query expressions in this context.
|
ACCEPT_QUERY
Accept only query expressions in this context.
|
ACCEPT_SUBQUERY
Accept only parenthesized queries or non-query expressions in this
context.
|
| Modifier and Type | Method and Description |
|---|---|
static SqlAbstractParserImpl.ExprContext |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlAbstractParserImpl.ExprContext[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlAbstractParserImpl.ExprContext ACCEPT_ALL
public static final SqlAbstractParserImpl.ExprContext ACCEPT_NONCURSOR
public static final SqlAbstractParserImpl.ExprContext ACCEPT_QUERY
public static final SqlAbstractParserImpl.ExprContext ACCEPT_NONQUERY
public static final SqlAbstractParserImpl.ExprContext ACCEPT_SUBQUERY
public static final SqlAbstractParserImpl.ExprContext ACCEPT_CURSOR
public static SqlAbstractParserImpl.ExprContext[] values()
for (SqlAbstractParserImpl.ExprContext c : SqlAbstractParserImpl.ExprContext.values()) System.out.println(c);
public static SqlAbstractParserImpl.ExprContext valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2012–2015 The Apache Software Foundation. All rights reserved.