Class FunctionsMapper


  • public class FunctionsMapper
    extends jakarta.el.FunctionMapper
    Maps between EL function names and methods.
    • Constructor Detail

      • FunctionsMapper

        public FunctionsMapper()
    • Method Detail

      • resolveFunction

        public Method resolveFunction​(String prefix,
                                      String localName)
        Resolves functions set via mapFunction(String, String, Method)
        Specified by:
        resolveFunction in class jakarta.el.FunctionMapper
        Parameters:
        prefix - the prefix of the function
        localName - the short name of the function
        Returns:
        the resolved Method assigned to the function
      • mapFunction

        public void mapFunction​(String prefix,
                                String localName,
                                Method meth)
        Sets a function which can be resolved
        Overrides:
        mapFunction in class jakarta.el.FunctionMapper
        Parameters:
        prefix - the prefix of the function
        localName - the short name of the function
        meth - method to invoke