public abstract class NumericConstant extends Constant
Constructor and Description |
---|
NumericConstant() |
Modifier and Type | Method and Description |
---|---|
abstract NumericConstant |
add(NumericConstant c) |
abstract NumericConstant |
divide(NumericConstant c) |
abstract NumericConstant |
equalEqual(NumericConstant c) |
abstract NumericConstant |
greaterThan(NumericConstant c) |
abstract NumericConstant |
greaterThanOrEqual(NumericConstant c) |
abstract NumericConstant |
lessThan(NumericConstant c) |
abstract NumericConstant |
lessThanOrEqual(NumericConstant c) |
abstract NumericConstant |
multiply(NumericConstant c) |
abstract NumericConstant |
negate() |
abstract NumericConstant |
notEqual(NumericConstant c) |
abstract NumericConstant |
remainder(NumericConstant c) |
abstract NumericConstant |
subtract(NumericConstant c) |
clone, convertToBaf, equivHashCode, equivTo, getUseBoxes, toString
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
apply
public abstract NumericConstant add(NumericConstant c)
public abstract NumericConstant subtract(NumericConstant c)
public abstract NumericConstant multiply(NumericConstant c)
public abstract NumericConstant divide(NumericConstant c)
public abstract NumericConstant remainder(NumericConstant c)
public abstract NumericConstant equalEqual(NumericConstant c)
public abstract NumericConstant notEqual(NumericConstant c)
public abstract NumericConstant lessThan(NumericConstant c)
public abstract NumericConstant lessThanOrEqual(NumericConstant c)
public abstract NumericConstant greaterThan(NumericConstant c)
public abstract NumericConstant greaterThanOrEqual(NumericConstant c)
public abstract NumericConstant negate()