Class StringUtils
java.lang.Object
org.pentaho.reporting.libraries.base.util.StringUtils
String utilities.
- Author:
- Thomas Morgner.
-
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
endsWithIgnoreCase
(String base, String end) Helper functions to query a strings end portion.static boolean
Determines if the two Strings are equals (taking nulls into account).static boolean
equalsIgnoreCase
(String s1, String s2) Determines if the two Strings are equals ingnoring case sensitivity (taking nulls into account).static String
Queries the system properties for the line separator.static boolean
Determines if the string is empty ornull
.static boolean
Determines if the string is empty ornull
.static final boolean
isSpace
(char c) Determines whether or not a character is considered a space.static String
makeUniqueName
(String[] knownNames, String pattern) Computes a unique name using the given known-names array as filter.static String[]
Merges the contents of the first and second array returning a array that contains only unique strings.static final boolean
onlySpaces
(String str) Checks whether or not a String consists only of spaces.static String[]
Splits a given string on any whitespace character.static String[]
Splits a given string at the given separator string.static String[]
Splits a given string at the given separator string.static String[]
Splits a given string at the given separator string.static String[]
Splits a given string at the given separator string.static boolean
startsWithIgnoreCase
(String base, String start) Helper functions to query a strings start portion.static boolean
Returnstrue
if the source string evaulates (case insensative and trimmed) totrue
,yes
, oron
.static boolean
Returnstrue
if the source string evaulates (case insensative and trimmed) totrue
,yes
, oron
.static final String
Trims a string: removes the leading and trailing spaces of a String.
-
Method Details
-
startsWithIgnoreCase
Helper functions to query a strings start portion. The comparison is case insensitive.- Parameters:
base
- the base string.start
- the starting text.- Returns:
- true, if the string starts with the given starting text.
-
endsWithIgnoreCase
Helper functions to query a strings end portion. The comparison is case insensitive.- Parameters:
base
- the base string.end
- the ending text.- Returns:
- true, if the string ends with the given ending text.
-
getLineSeparator
Queries the system properties for the line separator. If access to the System properties is forbidden, the UNIX default is returned.- Returns:
- the line separator.
-
split
Splits a given string on any whitespace character. Duplicate separators will be merged into a single separator occurance. This implementation provides the same functionality as the REGEXP-based String.split(..) operation but does not use Regular expressions and therefore it is faster and less memory consuming.- Parameters:
string
- the text to be split.- Returns:
- the text elements as array.
-
split
Splits a given string at the given separator string. Duplicate separators will be merged into a single separator occurance.- Parameters:
string
- the text to be split.separator
- the separator chacters used for the split.- Returns:
- the splitted array.
-
split
Splits a given string at the given separator string. Duplicate separators will be merged into a single separator occurance.- Parameters:
string
- the text to be split.separator
- the separator chacters used for the split.quate
- the quoting character.- Returns:
- the splitted array.
-
splitCSV
Splits a given string at the given separator string. Duplicate separators will result in empty strings thus preserving the number of fields specified in the original string.- Parameters:
string
- the text to be split.separator
- the separator chacters used for the split.- Returns:
- the splitted array.
-
splitCSV
Splits a given string at the given separator string. Duplicate separators will result in empty strings thus preserving the number of fields specified in the original string.- Parameters:
string
- the text to be split.separator
- the separator chacters used for the split.quate
- the quoting character.- Returns:
- the splitted array.
-
makeUniqueName
Computes a unique name using the given known-names array as filter. This method is not intended for large datasets.- Parameters:
knownNames
- the list of known names.pattern
- the name pattern, which should have one integer slot to create derived names.- Returns:
- the unique name or null, if no unqiue name could be created.
-
merge
Merges the contents of the first and second array returning a array that contains only unique strings. The order of the returned array is undefined.- Parameters:
first
- the first array to be merged.second
- the second array to be merged.- Returns:
- the merged araray.
-
toBoolean
Returnstrue
if the source string evaulates (case insensative and trimmed) totrue
,yes
, oron
. It will returnfalse
otherwise (includingnull
).- Parameters:
source
- the string to check- Returns:
true
if the source string evaulates totrue
or similar value,false
otherwise.
-
toBoolean
Returnstrue
if the source string evaulates (case insensative and trimmed) totrue
,yes
, oron
. It will returnfalse otherwise. If the source string is
null
, it will return the value of the default.- Parameters:
source
- the string to checknullDefault
- to value to return if the source string isnull
- Returns:
true
if the source string evaulates totrue
or similar value,false
otherwise.
-
isEmpty
Determines if the string is empty ornull
.- Parameters:
source
- the string to check- Returns:
true
if the source string isnull
or an emptry string,false
otherwise.
-
isEmpty
Determines if the string is empty ornull
. If the trim istrue
, the string will be trimmed before checking for an empty string.- Parameters:
source
- the string to checktrim
- indicates if the string should be trimmed before checking for an empty string.- Returns:
true
if the source string isnull
or an emptry string,false
otherwise.
-
equals
Determines if the two Strings are equals (taking nulls into account).- Parameters:
s1
- the first string to compare.s2
- the second string to compare.- Returns:
true
if both string are null or the contain the same value,false
otherwise
-
equalsIgnoreCase
Determines if the two Strings are equals ingnoring case sensitivity (taking nulls into account).- Parameters:
s1
- the first string to compare.s2
- the second string to compare.- Returns:
true
if both string are null or the contain the same case-insensitive value,false
otherwise
-
onlySpaces
Checks whether or not a String consists only of spaces.- Parameters:
str
- The string to check- Returns:
- true if the string has nothing but spaces.
-
isSpace
public static final boolean isSpace(char c) Determines whether or not a character is considered a space. A character is considered a space in Kettle if it is a space, a tab, a newline or a cariage return.- Parameters:
c
- The character to verify if it is a space.- Returns:
- true if the character is a space. false otherwise.
-
trim
Trims a string: removes the leading and trailing spaces of a String.- Parameters:
str
- The string to trim- Returns:
- The trimmed string.
-