org.jaxen.function.ext

Class EndsWithFunction

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

Object
call(Context context, List args)
Evaluate this function.
static Boolean
evaluate(Object strArg, Object matchArg, Navigator nav)

Method Details

call

public Object call(Context context,
                   List args)
            throws FunctionCallException
Evaluate this function.
Specified by:
call in interface Function
Parameters:
context - the context at the point in the expression when the function is called
args - 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 Boolean evaluate(Object strArg,
                               Object matchArg,
                               Navigator nav)