com.ibm.wala.logic
Enum IFormula.Kind

java.lang.Object
  extended by java.lang.Enum<IFormula.Kind>
      extended by com.ibm.wala.logic.IFormula.Kind
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<IFormula.Kind>
Enclosing interface:
IFormula

public static enum IFormula.Kind
extends java.lang.Enum<IFormula.Kind>


Enum Constant Summary
BINARY
           
CONSTANT
           
NEGATION
           
QUANTIFIED
           
RELATION
           
 
Method Summary
static IFormula.Kind valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IFormula.Kind[] 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
 

Enum Constant Detail

RELATION

public static final IFormula.Kind RELATION

NEGATION

public static final IFormula.Kind NEGATION

BINARY

public static final IFormula.Kind BINARY

QUANTIFIED

public static final IFormula.Kind QUANTIFIED

CONSTANT

public static final IFormula.Kind CONSTANT
Method Detail

values

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

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

valueOf

public static IFormula.Kind 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