com.akiban.sql.parser
Enum BinaryOperatorNode.OperatorType

java.lang.Object
  extended by java.lang.Enum<BinaryOperatorNode.OperatorType>
      extended by com.akiban.sql.parser.BinaryOperatorNode.OperatorType
All Implemented Interfaces:
Serializable, Comparable<BinaryOperatorNode.OperatorType>
Enclosing class:
BinaryOperatorNode

public static enum BinaryOperatorNode.OperatorType
extends Enum<BinaryOperatorNode.OperatorType>


Enum Constant Summary
AND
           
BITAND
           
BITOR
           
BITXOR
           
CONCATENATE
           
DIV
           
DIVIDE
           
EQ
           
GE
           
GT
           
LE
           
LEFT
           
LEFT_SHIFT
           
LIKE
           
LT
           
LTRIM
           
MINUS
           
MOD
           
NE
           
OR
           
PLUS
           
RIGHT
           
RIGHT_SHIFT
           
RTRIM
           
TIMES
           
TRIM
           
 
Method Summary
static BinaryOperatorNode.OperatorType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static BinaryOperatorNode.OperatorType[] 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, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

PLUS

public static final BinaryOperatorNode.OperatorType PLUS

MINUS

public static final BinaryOperatorNode.OperatorType MINUS

TIMES

public static final BinaryOperatorNode.OperatorType TIMES

DIVIDE

public static final BinaryOperatorNode.OperatorType DIVIDE

CONCATENATE

public static final BinaryOperatorNode.OperatorType CONCATENATE

MOD

public static final BinaryOperatorNode.OperatorType MOD

DIV

public static final BinaryOperatorNode.OperatorType DIV

EQ

public static final BinaryOperatorNode.OperatorType EQ

NE

public static final BinaryOperatorNode.OperatorType NE

GT

public static final BinaryOperatorNode.OperatorType GT

GE

public static final BinaryOperatorNode.OperatorType GE

LT

public static final BinaryOperatorNode.OperatorType LT

LE

public static final BinaryOperatorNode.OperatorType LE

AND

public static final BinaryOperatorNode.OperatorType AND

OR

public static final BinaryOperatorNode.OperatorType OR

LIKE

public static final BinaryOperatorNode.OperatorType LIKE

LTRIM

public static final BinaryOperatorNode.OperatorType LTRIM

TRIM

public static final BinaryOperatorNode.OperatorType TRIM

RTRIM

public static final BinaryOperatorNode.OperatorType RTRIM

BITAND

public static final BinaryOperatorNode.OperatorType BITAND

BITOR

public static final BinaryOperatorNode.OperatorType BITOR

BITXOR

public static final BinaryOperatorNode.OperatorType BITXOR

LEFT_SHIFT

public static final BinaryOperatorNode.OperatorType LEFT_SHIFT

RIGHT_SHIFT

public static final BinaryOperatorNode.OperatorType RIGHT_SHIFT

LEFT

public static final BinaryOperatorNode.OperatorType LEFT

RIGHT

public static final BinaryOperatorNode.OperatorType RIGHT
Method Detail

values

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

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

valueOf

public static BinaryOperatorNode.OperatorType 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
NullPointerException - if the argument is null


Copyright © 2013 Akiban Technologies, Inc. All rights reserved.