All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.faces.metadata.taglib.jstl-fn.taglib.xml Maven / Gradle / Ivy

There is a newer version: 4.1.1
Show newest version




    JSTL 1.1 functions library
    jakarta.tags.functions
    
    
        
            Tests if an input string contains the specified substring.
        
        contains
        com.sun.faces.facelets.tag.jstl.fn.JstlFunction
        boolean contains(java.lang.String, java.lang.String)
    
    
        
            Tests if an input string contains the specified substring in a case insensitive way.
        
        containsIgnoreCase
        com.sun.faces.facelets.tag.jstl.fn.JstlFunction
        boolean containsIgnoreCase(java.lang.String, java.lang.String)
    
    
        
            Tests if an input string ends with the specified suffix.
        
        endsWith
        com.sun.faces.facelets.tag.jstl.fn.JstlFunction
        boolean endsWith(java.lang.String, java.lang.String)
    
    
        
            Escapes characters that could be interpreted as XML markup.
        
        escapeXml
        com.sun.faces.facelets.tag.jstl.fn.JstlFunction
        java.lang.String escapeXml(java.lang.String)
    
    
        
            Returns the index withing a string of the first occurrence of a specified substring.
        
        indexOf
        com.sun.faces.facelets.tag.jstl.fn.JstlFunction
        int indexOf(java.lang.String, java.lang.String)
    
    
        
            Joins all elements of an array into a string.
        
        join
        com.sun.faces.facelets.tag.jstl.fn.JstlFunction
        java.lang.String join(java.lang.String[], java.lang.String)
    
    
        
            Returns the number of items in a collection, or the number of characters in a string.
        
        length
        com.sun.faces.facelets.tag.jstl.fn.JstlFunction
        int length(java.lang.Object)
    
    
        
            Returns a string resulting from replacing in an input string all occurrences
            of a "before" string into an "after" substring.
        
        replace
        com.sun.faces.facelets.tag.jstl.fn.JstlFunction
        java.lang.String replace(java.lang.String, java.lang.String, java.lang.String)
    
    
        
            Splits a string into an array of substrings.
        
        split
        com.sun.faces.facelets.tag.jstl.fn.JstlFunction
        java.lang.String[] split(java.lang.String, java.lang.String)
    
    
        
            Tests if an input string starts with the specified prefix.
        
        startsWith
        com.sun.faces.facelets.tag.jstl.fn.JstlFunction
        boolean startsWith(java.lang.String, java.lang.String)
    
    
        
            Returns a subset of a string.
        
        substring
        com.sun.faces.facelets.tag.jstl.fn.JstlFunction
        java.lang.String substring(java.lang.String, int, int)
    
    
        
            Returns a subset of a string following a specific substring.
        
        substringAfter
        com.sun.faces.facelets.tag.jstl.fn.JstlFunction
        java.lang.String substringAfter(java.lang.String, java.lang.String)
    
    
        
            Returns a subset of a string before a specific substring.
        
        substringBefore
        com.sun.faces.facelets.tag.jstl.fn.JstlFunction
        java.lang.String substringBefore(java.lang.String, java.lang.String)
    
    
        
            Converts all of the characters of a string to lower case.
        
        toLowerCase
        com.sun.faces.facelets.tag.jstl.fn.JstlFunction
        java.lang.String toLowerCase(java.lang.String)
    
    
        
            Converts all of the characters of a string to upper case.
        
        toUpperCase
        com.sun.faces.facelets.tag.jstl.fn.JstlFunction
        java.lang.String toUpperCase(java.lang.String)
    
    
        
            Removes white spaces from both ends of a string.
        
        trim
        com.sun.faces.facelets.tag.jstl.fn.JstlFunction
        java.lang.String trim(java.lang.String)
    





© 2015 - 2024 Weber Informatics LLC | Privacy Policy