de.flexiprovider.common.util
Class StringUtils

java.lang.Object
  |
  +--de.flexiprovider.common.util.StringUtils

public final class StringUtils
extends java.lang.Object

This class is a utility class for manipulating strings.


Method Summary
static boolean equals(java.lang.String[] left, java.lang.String[] right)
          Compare two String arrays.
static java.lang.String filterSpaces(java.lang.String str)
          Strip whitespace off a string, returning a new string.
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

filterSpaces

public static java.lang.String filterSpaces(java.lang.String str)
Strip whitespace off a string, returning a new string.
Parameters:
str - the string
Returns:
the filtered string

equals

public static boolean equals(java.lang.String[] left,
                             java.lang.String[] right)
Compare two String arrays. No null checks are performed.
Parameters:
left - the first String array
right - the second String array
Returns:
the result of the comparison