jme.utility
Class StringUtils

java.lang.Object
  extended byjme.utility.StringUtils

public class StringUtils
extends java.lang.Object

StringUtils provides various methods to operate on Strings.

Author:
Mark Powell

Constructor Summary
StringUtils()
           
 
Method Summary
static boolean isInString(java.lang.String string, java.lang.String subString)
          isInString reports if a substring is contained within another string.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

StringUtils

public StringUtils()
Method Detail

isInString

public static boolean isInString(java.lang.String string,
                                 java.lang.String subString)
isInString reports if a substring is contained within another string.

Parameters:
string - the string to examine.
subString - the substring to examine.
Returns:
true if the substring is in the string.