tracer.expression
Class ceilFunc

java.lang.Object
  |
  +--tracer.expression.Function
        |
        +--tracer.expression.oneArgFunction
              |
              +--tracer.expression.ceilFunc

public class ceilFunc
extends oneArgFunction

Ceiling function


Fields inherited from class tracer.expression.Function
numArgs
 
Constructor Summary
ceilFunc()
           
 
Method Summary
 double apply(double a)
          Returns the "ceiling" or smallest whole number greater than or equal to a.
 java.lang.String toString()
          Return string "CEIL"
 
Methods inherited from class tracer.expression.oneArgFunction
apply
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ceilFunc

public ceilFunc()
Method Detail

apply

public double apply(double a)
Returns the "ceiling" or smallest whole number greater than or equal to a.
Overrides:
apply in class Function

toString

public java.lang.String toString()
Return string "CEIL"
Overrides:
toString in class Function