All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----gnu.jel.StringLib
This class merely provides static wrappers for methods of java.lang.String class. Use this as a static library to get string manipulation functions within JEL compiled expressions. see java.lang.String for descriptions of corresponding methods.
public StringLib()
public static int length(String arg)
public static char charAt(String arg, int index)
public static boolean equals(String arg, Object anObject)
public static int compareTo(String arg, String anotherString)
public static boolean regionMatches(String one, int toffset, String other, int ooffset, int len)
public static boolean regionMatches(boolean ignorecase, String one, int toffset, String other, int ooffset, int len)
public static boolean startsWith(String arg, String prefix, int toffset)
public static boolean startsWith(String arg, String prefix)
public static boolean endsWith(String arg, String suffix)
public static int indexOf(String arg, int ch)
public static int indexOf(String arg, int ch, int fromIndex)
public static int lastIndexOf(String arg, int ch)
public static int lastIndexOf(String arg, int ch, int fromIndex)
public static int indexOf(String arg, String other)
public static int indexOf(String arg, String other, int fromIndex)
public static int lastIndexOf(String arg, String other)
public static int lastIndexOf(String arg, String other, int fromIndex)
public static String substring(String arg, int beginIndex)
public static String substring(String arg, int beginIndex, int endIndex)
public static String concat(String arg, String str)
public static String replace(String arg, char oldChar, char newChar)
public static String toLowerCase(String arg)
public static String toUpperCase(String arg)
public static String trim(String arg)
public static String intern(String arg)
public static String valueOf(Object obj)
public static String valueOf(boolean b)
public static String valueOf(char c)
public static String valueOf(int i)
public static String valueOf(long l)
public static String valueOf(float f)
public static String valueOf(double d)
All Packages Class Hierarchy This Package Previous Next Index