rle.util
Class StringUtil

java.lang.Object
  extended by rle.util.StringUtil

public class StringUtil
extends java.lang.Object

Utility class for string processing.


Field Summary
static int INVALID
           
 
Constructor Summary
StringUtil()
           
 
Method Summary
static java.lang.String[] extend(java.lang.String[] a, java.lang.String s)
          Return a new array with s appended to a.
static java.lang.String[] extend(java.lang.String[] a, java.lang.String[] s)
          Return a new array with s appended to a.
static java.lang.String getDelimitedString(java.util.Collection coll, java.lang.String delim)
          Take Collection l and build a String of the elements in l delimited by d.
static java.lang.String initCap(java.lang.String s)
          Sets all Characters to Lower and then Capitaizes the First Leter.
static int intValue(java.lang.Object o)
          Vigorously attempt to retrieve an int value from o.
static int parseInt(java.lang.String s)
          Safely parse an int, 0 if invalid
static int parseInt(java.lang.String s, int def)
          Safely parse an int, default if invalid
static java.util.Map<java.lang.String,java.lang.String> parseMap(java.lang.String s)
          Parse a space delimited String into a map eg key=1 hp=25 would parse into a map with keys key and hp, and values 1 and 25 respectively.
static java.util.Map<java.lang.String,java.lang.String> parseMap(java.lang.String s, java.lang.String delimiter)
          Parse a space delimited String into a map eg key=1 hp=25 would parse into a map with keys key and hp, and values 1 and 25 respectively.
static java.util.Map parsePrefixMap(java.lang.String text, java.lang.String prefix)
          Parse the line delimited text into a map for only those lines starting with the prefix.
static java.lang.String replace(java.util.Map map, java.lang.String text)
          Replaces all instances of keys with values in map.
static java.lang.String replace(java.util.Map map, java.lang.String text, java.lang.String tagStart, java.lang.String tagEnd)
          Replaces all instances of keys with values in map.
static java.lang.String replace(java.lang.String pattern, java.lang.String replacement, java.lang.String text)
          Replaces all instances of pattern in text with replacement.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

INVALID

public static final int INVALID
See Also:
Constant Field Values
Constructor Detail

StringUtil

public StringUtil()
Method Detail

getDelimitedString

public static java.lang.String getDelimitedString(java.util.Collection coll,
                                                  java.lang.String delim)
Take Collection l and build a String of the elements in l delimited by d.


replace

public static java.lang.String replace(java.util.Map map,
                                       java.lang.String text,
                                       java.lang.String tagStart,
                                       java.lang.String tagEnd)
Replaces all instances of keys with values in map. for each key, we prepend tagStart and append tagEnd


replace

public static java.lang.String replace(java.util.Map map,
                                       java.lang.String text)
Replaces all instances of keys with values in map.


replace

public static java.lang.String replace(java.lang.String pattern,
                                       java.lang.String replacement,
                                       java.lang.String text)
Replaces all instances of pattern in text with replacement.


extend

public static java.lang.String[] extend(java.lang.String[] a,
                                        java.lang.String s)
Return a new array with s appended to a.


extend

public static java.lang.String[] extend(java.lang.String[] a,
                                        java.lang.String[] s)
Return a new array with s appended to a.


initCap

public static java.lang.String initCap(java.lang.String s)
Sets all Characters to Lower and then Capitaizes the First Leter.


parseMap

public static java.util.Map<java.lang.String,java.lang.String> parseMap(java.lang.String s)
Parse a space delimited String into a map eg key=1 hp=25 would parse into a map with keys key and hp, and values 1 and 25 respectively.


parseMap

public static java.util.Map<java.lang.String,java.lang.String> parseMap(java.lang.String s,
                                                                        java.lang.String delimiter)
Parse a space delimited String into a map eg key=1 hp=25 would parse into a map with keys key and hp, and values 1 and 25 respectively.


parsePrefixMap

public static java.util.Map parsePrefixMap(java.lang.String text,
                                           java.lang.String prefix)
Parse the line delimited text into a map for only those lines starting with the prefix. The resulting map will contain the portion of the line to the left of '=' as the key, minus the prefix, and the portion of the line after the '=' as the value.


parseInt

public static int parseInt(java.lang.String s)
Safely parse an int, 0 if invalid


parseInt

public static int parseInt(java.lang.String s,
                           int def)
Safely parse an int, default if invalid


intValue

public static int intValue(java.lang.Object o)
Vigorously attempt to retrieve an int value from o. Will return INVALID if the effort fails.

Parameters:
o -
Returns: