Class Functions
- java.lang.Object
-
- org.apache.taglibs.standard.functions.Functions
-
public class Functions extends Object
JSTL Functions
- Author:
- Pierre Delisle
-
-
Constructor Summary
Constructors Constructor Description Functions()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static booleancontains(String input, String substring)static booleancontainsIgnoreCase(String input, String substring)static booleanendsWith(String input, String substring)static StringescapeXml(String input)static intindexOf(String input, String substring)static Stringjoin(String[] array, String separator)static intlength(Object obj)static Stringreplace(String input, String substringBefore, String substringAfter)static String[]split(String input, String delimiters)static booleanstartsWith(String input, String substring)static Stringsubstring(String input, int beginIndex, int endIndex)static StringsubstringAfter(String input, String substring)static StringsubstringBefore(String input, String substring)static StringtoLowerCase(String input)Converts all of the characters of the input string to lower case.static StringtoUpperCase(String input)Converts all of the characters of the input string to upper case.static Stringtrim(String input)
-
-
-
Method Detail
-
toUpperCase
public static String toUpperCase(String input)
Converts all of the characters of the input string to upper case.
-
toLowerCase
public static String toLowerCase(String input)
Converts all of the characters of the input string to lower case.
-
length
public static int length(Object obj) throws jakarta.servlet.jsp.JspTagException
- Throws:
jakarta.servlet.jsp.JspTagException
-
-