public static enum SqlBetweenOperator.Flag extends Enum<SqlBetweenOperator.Flag> implements SqlLiteral.SqlSymbol
| Enum Constant and Description |
|---|
ASYMMETRIC |
SYMMETRIC |
| Modifier and Type | Method and Description |
|---|---|
static SqlBetweenOperator.Flag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlBetweenOperator.Flag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfname, ordinalpublic static final SqlBetweenOperator.Flag ASYMMETRIC
public static final SqlBetweenOperator.Flag SYMMETRIC
public static SqlBetweenOperator.Flag[] values()
for (SqlBetweenOperator.Flag c : SqlBetweenOperator.Flag.values()) System.out.println(c);
public static SqlBetweenOperator.Flag 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.