Class CeilingFunction
java.lang.Object
org.jaxen.function.CeilingFunction
- All Implemented Interfaces:
Function
4.4 number ceiling(number)
The ceiling function returns the smallest (closest to negative infinity) number that is not less than the argument and that is an integer....If the argument is NaN, then NaN is returned. If the argument is positive infinity, then positive infinity is returned. If the argument is negative infinity, then negative infinity is returned. If the argument is positive zero, then positive zero is returned. If the argument is negative zero, then negative zero is returned. If the argument is less than zero, but greater than -1, then negative zero is returned.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
CeilingFunction
public CeilingFunction()Create a newCeilingFunctionobject.
-
-
Method Details
-
call
Returns the smallest integer greater than or equal to a number.- Specified by:
callin interfaceFunction- Parameters:
context- the context at the point in the expression when the function is calledargs- a list with exactly one item which will be converted to aDoubleas if by the XPathnumber()function- Returns:
- a
Doublecontaining the smallest integer greater than or equalargs.get(0) - Throws:
FunctionCallException- ifargshas more or less than one item
-