org.jaxen.function.ext
Class EndsWithFunction
java.lang.Object
org.jaxen.function.ext.EndsWithFunction
- All Implemented Interfaces:
- Function
- public class EndsWithFunction
- extends java.lang.Object
- implements Function
boolean ends-with(string,string)
- Author:
- mark wilson (markw @ wilsoncom.de)
Method Summary |
java.lang.Object |
call(Context context,
java.util.List args)
Evaluate this function. |
static java.lang.Boolean |
evaluate(java.lang.Object strArg,
java.lang.Object matchArg,
Navigator nav)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
EndsWithFunction
public EndsWithFunction()
call
public java.lang.Object call(Context context,
java.util.List args)
throws FunctionCallException
- Description copied from interface:
Function
- Evaluate this function.
- Specified by:
call
in interface Function
- Parameters:
context
- the context at the point in the
expression when the function is calledargs
- arguments provided to the function
- Returns:
- the result of evaluating the function; a
List
(node-set), Double
, Boolean
, or
String
- Throws:
FunctionCallException
- if an XPath error occurs during evaluation;
for instance, if the number or type of the arguments is incorrect
evaluate
public static java.lang.Boolean evaluate(java.lang.Object strArg,
java.lang.Object matchArg,
Navigator nav)