java.lang.Method
. Returns null
if no function could be found that matches the given prefix and local name.
"fn"
in ${fn:method()}
, or ""
in ${method()}
.
@param localName the short name of the function. For example,"method"
in ${fn:method()}
.
@return the static method to invoke, or null
if nomatch was found.
Note: not all EL evaluator support {@link #resolveFunction}. Currently only JSP 2.0/2.1 EL-based expression factories support this method. You can check {@link ExpressionFactory#isSupported} for thissupport. @param prefix the prefix of the function, or "" if no prefix @param name the name of the function to resolve
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|