com.ibm.wala.cast.ir.ssa
Enum AstConstants.BinaryOp

java.lang.Object
  extended by java.lang.Enum<AstConstants.BinaryOp>
      extended by com.ibm.wala.cast.ir.ssa.AstConstants.BinaryOp
All Implemented Interfaces:
BinaryOpInstruction.IOperator, java.io.Serializable, java.lang.Comparable<AstConstants.BinaryOp>
Enclosing interface:
AstConstants

public static enum AstConstants.BinaryOp
extends java.lang.Enum<AstConstants.BinaryOp>
implements BinaryOpInstruction.IOperator


Enum Constant Summary
CONCAT
           
EQ
           
GE
           
GT
           
LE
           
LT
           
NE
           
 
Method Summary
 java.lang.String toString()
           
static AstConstants.BinaryOp valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AstConstants.BinaryOp[] 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

CONCAT

public static final AstConstants.BinaryOp CONCAT

EQ

public static final AstConstants.BinaryOp EQ

NE

public static final AstConstants.BinaryOp NE

LT

public static final AstConstants.BinaryOp LT

GE

public static final AstConstants.BinaryOp GE

GT

public static final AstConstants.BinaryOp GT

LE

public static final AstConstants.BinaryOp LE
Method Detail

values

public static final AstConstants.BinaryOp[] 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(AstConstants.BinaryOp c : AstConstants.BinaryOp.values())
        System.out.println(c);

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

valueOf

public static AstConstants.BinaryOp 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<AstConstants.BinaryOp>