| java.lang.Object org.jfree.util.StringUtils
StringUtils | public class StringUtils (Code) | | String utilities.
author: Thomas Morgner. |
endsWithIgnoreCase | public static boolean endsWithIgnoreCase(String base, String end)(Code) | | Helper functions to query a strings end portion. The comparison is case insensitive.
Parameters: base - the base string. Parameters: end - the ending text. true, if the string ends with the given ending text. |
getLineSeparator | public static String getLineSeparator()(Code) | | Queries the system properties for the line separator. If access
to the System properties is forbidden, the UNIX default is returned.
the line separator. |
startsWithIgnoreCase | public static boolean startsWithIgnoreCase(String base, String start)(Code) | | Helper functions to query a strings start portion. The comparison is case insensitive.
Parameters: base - the base string. Parameters: start - the starting text. true, if the string starts with the given starting text. |
|
|