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.
- Author:
- bob mcwhirter (bob @ werken.com)
- See Also:
- Section 4.3 of the XPath Specification
-
-
Constructor Summary
Constructors Constructor Description FalseFunction()Create a newFalseFunctionobject.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Objectcall(Context context, java.util.List args)ReturnsBoolean.FALSEstatic java.lang.Booleanevaluate()Returns false.
-
-
-
Method Detail
-
call
public java.lang.Object call(Context context, java.util.List args) throws FunctionCallException
ReturnsBoolean.FALSE- Specified by:
callin interfaceFunction- Parameters:
context- the context at the point in the expression when the function is calledargs- an empty list- Returns:
Boolean.FALSE- Throws:
FunctionCallException- ifargsis not empty
-
evaluate
public static java.lang.Boolean evaluate()
Returns false.- Returns:
Boolean.FALSE
-
-