soot.jimple
Class LongConstant

java.lang.Object
  extended by soot.jimple.Constant
      extended by soot.jimple.NumericConstant
          extended by soot.jimple.ArithmeticConstant
              extended by soot.jimple.LongConstant
All Implemented Interfaces:
Serializable, EquivTo, Immediate, ConvertToBaf, Switchable, Value

public class LongConstant
extends ArithmeticConstant

See Also:
Serialized Form

Field Summary
 long value
           
 
Method Summary
 NumericConstant add(NumericConstant c)
           
 ArithmeticConstant and(ArithmeticConstant c)
           
 void apply(Switch sw)
          Called when this object is visited.
 IntConstant cmp(LongConstant c)
           
 NumericConstant divide(NumericConstant c)
           
 NumericConstant equalEqual(NumericConstant c)
           
 boolean equals(Object c)
           
 Type getType()
          Returns the Soot type of this Value.
 NumericConstant greaterThan(NumericConstant c)
           
 NumericConstant greaterThanOrEqual(NumericConstant c)
           
 int hashCode()
          Returns a hash code for this DoubleConstant object.
 NumericConstant lessThan(NumericConstant c)
           
 NumericConstant lessThanOrEqual(NumericConstant c)
           
 NumericConstant multiply(NumericConstant c)
           
 NumericConstant negate()
           
 NumericConstant notEqual(NumericConstant c)
           
 ArithmeticConstant or(ArithmeticConstant c)
           
 NumericConstant remainder(NumericConstant c)
           
 ArithmeticConstant shiftLeft(ArithmeticConstant c)
           
 ArithmeticConstant shiftRight(ArithmeticConstant c)
           
 NumericConstant subtract(NumericConstant c)
           
 String toString()
           
 ArithmeticConstant unsignedShiftRight(ArithmeticConstant c)
           
static LongConstant v(long value)
           
 ArithmeticConstant xor(ArithmeticConstant c)
           
 
Methods inherited from class soot.jimple.Constant
clone, convertToBaf, equivHashCode, equivTo, getUseBoxes, toString
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

value

public final long value
Method Detail

v

public static LongConstant v(long value)

equals

public boolean equals(Object c)
Overrides:
equals in class Object

hashCode

public int hashCode()
Returns a hash code for this DoubleConstant object.

Overrides:
hashCode in class Object

add

public NumericConstant add(NumericConstant c)
Specified by:
add in class NumericConstant

subtract

public NumericConstant subtract(NumericConstant c)
Specified by:
subtract in class NumericConstant

multiply

public NumericConstant multiply(NumericConstant c)
Specified by:
multiply in class NumericConstant

divide

public NumericConstant divide(NumericConstant c)
Specified by:
divide in class NumericConstant

remainder

public NumericConstant remainder(NumericConstant c)
Specified by:
remainder in class NumericConstant

equalEqual

public NumericConstant equalEqual(NumericConstant c)
Specified by:
equalEqual in class NumericConstant

notEqual

public NumericConstant notEqual(NumericConstant c)
Specified by:
notEqual in class NumericConstant

lessThan

public NumericConstant lessThan(NumericConstant c)
Specified by:
lessThan in class NumericConstant

lessThanOrEqual

public NumericConstant lessThanOrEqual(NumericConstant c)
Specified by:
lessThanOrEqual in class NumericConstant

greaterThan

public NumericConstant greaterThan(NumericConstant c)
Specified by:
greaterThan in class NumericConstant

greaterThanOrEqual

public NumericConstant greaterThanOrEqual(NumericConstant c)
Specified by:
greaterThanOrEqual in class NumericConstant

cmp

public IntConstant cmp(LongConstant c)

negate

public NumericConstant negate()
Specified by:
negate in class NumericConstant

and

public ArithmeticConstant and(ArithmeticConstant c)
Specified by:
and in class ArithmeticConstant

or

public ArithmeticConstant or(ArithmeticConstant c)
Specified by:
or in class ArithmeticConstant

xor

public ArithmeticConstant xor(ArithmeticConstant c)
Specified by:
xor in class ArithmeticConstant

shiftLeft

public ArithmeticConstant shiftLeft(ArithmeticConstant c)
Specified by:
shiftLeft in class ArithmeticConstant

shiftRight

public ArithmeticConstant shiftRight(ArithmeticConstant c)
Specified by:
shiftRight in class ArithmeticConstant

unsignedShiftRight

public ArithmeticConstant unsignedShiftRight(ArithmeticConstant c)
Specified by:
unsignedShiftRight in class ArithmeticConstant

toString

public String toString()
Overrides:
toString in class Object

getType

public Type getType()
Description copied from interface: Value
Returns the Soot type of this Value.


apply

public void apply(Switch sw)
Description copied from interface: Switchable
Called when this object is visited.