Class TypeIsExactlyFunction

  • All Implemented Interfaces:
    org.jaxen.Function

    @InternalApi
    @Deprecated
    public class TypeIsExactlyFunction
    extends Object
    implements org.jaxen.Function
    Deprecated.
    • Constructor Detail

      • TypeIsExactlyFunction

        public TypeIsExactlyFunction()
        Deprecated.
    • Method Detail

      • registerSelfInSimpleContext

        public static void registerSelfInSimpleContext()
        Deprecated.
      • call

        public Object call​(org.jaxen.Context context,
                           List args)
                    throws org.jaxen.FunctionCallException
        Deprecated.
        Specified by:
        call in interface org.jaxen.Function
        Throws:
        org.jaxen.FunctionCallException
      • typeIsExactly

        public static boolean typeIsExactly​(Node n,
                                            String fullTypeName)
        Deprecated.
        Example XPath 1.0: //ClassOrInterfaceType[typeIsExactly('java.lang.String')]

        Example XPath 2.0: //ClassOrInterfaceType[pmd-java:typeIsExactly('java.lang.String')]

        Parameters:
        n - The node on which to check for types
        fullTypeName - The fully qualified name of the class or any supertype
        Returns:
        True if the type of the node matches, false otherwise.