org.eigenbase.sql.fun
Enum SqlBetweenOperator.Flag

java.lang.Object
  extended by java.lang.Enum<SqlBetweenOperator.Flag>
      extended by org.eigenbase.sql.fun.SqlBetweenOperator.Flag
All Implemented Interfaces:
Serializable, Comparable<SqlBetweenOperator.Flag>, SqlLiteral.SqlSymbol
Enclosing class:
SqlBetweenOperator

public static enum SqlBetweenOperator.Flag
extends Enum<SqlBetweenOperator.Flag>
implements SqlLiteral.SqlSymbol

Defines the "SYMMETRIC" and "ASYMMETRIC" keywords.


Enum Constant Summary
ASYMMETRIC
           
SYMMETRIC
           
 
Method Summary
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're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.eigenbase.sql.SqlLiteral.SqlSymbol
name, ordinal
 

Enum Constant Detail

ASYMMETRIC

public static final SqlBetweenOperator.Flag ASYMMETRIC

SYMMETRIC

public static final SqlBetweenOperator.Flag SYMMETRIC
Method Detail

values

public static final SqlBetweenOperator.Flag[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(SqlBetweenOperator.Flag c : SqlBetweenOperator.Flag.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static SqlBetweenOperator.Flag valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name