Package org.jaxen.function
Class FalseFunction
- java.lang.Object
-
- org.jaxen.function.FalseFunction
-
- All Implemented Interfaces:
Function
public class FalseFunction extends java.lang.Object implements Function
4.3
boolean false()
Returns false.
- See Also:
- Section 4.3 of the XPath Specification
-
-
Constructor Summary
Constructors Constructor Description FalseFunction()
Create a newFalseFunction
object.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
call(Context context, java.util.List args)
ReturnsBoolean.FALSE
static java.lang.Boolean
evaluate()
Returns false.
-
-
-
Method Detail
-
call
public java.lang.Object call(Context context, java.util.List args) throws FunctionCallException
ReturnsBoolean.FALSE
- Specified by:
call
in interfaceFunction
- Parameters:
context
- the context at the point in the expression when the function is calledargs
- an empty list- Returns:
Boolean.FALSE
- Throws:
FunctionCallException
- ifargs
is not empty
-
evaluate
public static java.lang.Boolean evaluate()
Returns false.- Returns:
Boolean.FALSE
-
-