Translate
Enum Tree.Exp.BINOP.Operator

java.lang.Object
  extended by java.lang.Enum<Tree.Exp.BINOP.Operator>
      extended by Translate.Tree.Exp.BINOP.Operator
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Tree.Exp.BINOP.Operator>
Enclosing class:
Tree.Exp.BINOP

public static enum Tree.Exp.BINOP.Operator
extends java.lang.Enum<Tree.Exp.BINOP.Operator>


Enum Constant Summary
ADD
           
AND
           
DIV
           
DIVU
           
MUL
           
OR
           
SLL
           
SRA
           
SRL
           
SUB
           
XOR
           
 
Method Summary
 java.lang.String toString()
           
static Tree.Exp.BINOP.Operator valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Tree.Exp.BINOP.Operator[] 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, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ADD

public static final Tree.Exp.BINOP.Operator ADD

AND

public static final Tree.Exp.BINOP.Operator AND

DIV

public static final Tree.Exp.BINOP.Operator DIV

DIVU

public static final Tree.Exp.BINOP.Operator DIVU

MUL

public static final Tree.Exp.BINOP.Operator MUL

OR

public static final Tree.Exp.BINOP.Operator OR

SLL

public static final Tree.Exp.BINOP.Operator SLL

SRA

public static final Tree.Exp.BINOP.Operator SRA

SRL

public static final Tree.Exp.BINOP.Operator SRL

SUB

public static final Tree.Exp.BINOP.Operator SUB

XOR

public static final Tree.Exp.BINOP.Operator XOR
Method Detail

values

public static final Tree.Exp.BINOP.Operator[] 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(Tree.Exp.BINOP.Operator c : Tree.Exp.BINOP.Operator.values())
        System.out.println(c);

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

valueOf

public static Tree.Exp.BINOP.Operator valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<Tree.Exp.BINOP.Operator>