org.nfunk.jep.function
Class Ceil
java.lang.Object
org.nfunk.jep.function.PostfixMathCommand
org.nfunk.jep.function.Ceil
- All Implemented Interfaces:
- PostfixMathCommandI
public class Ceil
- extends PostfixMathCommand
A PostfixMathCommandI which find the smallest integer above the number
ceil(pi) give 4
ceil(-i) give -3
- Author:
- Richard Morris
- See Also:
Math.ceil(double)
|
Constructor Summary |
Ceil()
|
|
Method Summary |
Object |
ceil(Object param)
|
void |
run(Stack inStack)
Throws an exception because this method should never be called under
normal circumstances. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Ceil
public Ceil()
run
public void run(Stack inStack)
throws ParseException
- Description copied from class:
PostfixMathCommand
- Throws an exception because this method should never be called under
normal circumstances. Each function should use it's own run() method
for evaluating the function. This includes popping off the parameters
from the stack, and pushing the result back on the stack.
- Specified by:
run in interface PostfixMathCommandI- Overrides:
run in class PostfixMathCommand
- Throws:
ParseException
ceil
public Object ceil(Object param)
throws ParseException
- Throws:
ParseException
Copyright © 2014. All rights reserved.