Uses of Class
org.nihongoresources.utf8.uString

Uses of uString in org.nihongoresources.utf8
 

Methods in org.nihongoresources.utf8 that return uString
 uString uString.append(java.lang.String suffix)
          Since we cannot overload operators (like "+"), we'll have to use append...
 uString uString.append(uString suffix)
          Since we cannot overload operators (like "+"), we'll have to use append...
 uString uString.replaceCharacter(java.lang.String find, java.lang.String replace)
          Replaces one character with another (replacement can be the string "", target cannot)
 uString[] uString.split(java.lang.String regexp)
          splits the string based on the specified regular expression
 uString uString.substring(int begin_inclusive, int end_exclusive)
          Extracts a substring by building a new characters vector and passing that to the private vector-based constructor.
 uString uString.trim()
          removes whitespace at the start and end of this unicode string
 

Methods in org.nihongoresources.utf8 with parameters of type uString
 uString uString.append(uString suffix)
          Since we cannot overload operators (like "+"), we'll have to use append...
 int uString.compareTo(uString other)
          again, good to have! we don't care about string length.
 

Constructors in org.nihongoresources.utf8 with parameters of type uString
uCharArray(uString string)
          uString based constructor