tracer.expression
Class floorFunc

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

public class floorFunc
extends oneArgFunction

Floor function


Fields inherited from class tracer.expression.Function
numArgs
 
Constructor Summary
floorFunc()
           
 
Method Summary
 double apply(double a)
          Returns the "floor" or largest whole number less than or equal to a.
 java.lang.String toString()
          Return string "FLOOR"
 
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

floorFunc

public floorFunc()
Method Detail

apply

public double apply(double a)
Returns the "floor" or largest whole number less than or equal to a.
Overrides:
apply in class Function

toString

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