Uses of Package
javolution.text

Packages that use javolution.text
javolution.lang Provides fundamental classes and interfaces; some of which are either missing from the java.lang package or are not available for all platforms (including J2ME CLDC). 
javolution.text Provides classes and interfaces to handle text. 
javolution.util Provides high-performance collection classes and miscellaneous utilities; although this package provides very few collection classes, they are substitutes for most of java.util.* classes (for example, java.util.IdentityHashMap would be a FastMap with an identity key comparator). 
javolution.xml Provides support for the encoding of objects, and the objects reachable from them, into XML; and the complementary reconstruction of the object graph from XML
javolution.xml.sax Provides SAX2 and SAX2-Like parsers; the later being several times faster than conventional SAX2 parsers (by avoiding String allocations while parsing). 
javolution.xml.stream Provides StAX-like XML readers/writers which do not require object creation (such as String) and are consequently faster and more time predictable than standard StAX classes. 
 

Classes in javolution.text used by javolution.lang
Text
           This class represents an immutable character sequence with fast concatenation, insertion and deletion capabilities (O[Log(n)]) instead of O[n] for StringBuffer/StringBuilder).
 

Classes in javolution.text used by javolution.text
CharArray
           This class represents a CharSequence backed up by a char array.
CharSet
           This class represents a set of characters.
Cursor
           This class represents a parsing cursor over characters.
Text
           This class represents an immutable character sequence with fast concatenation, insertion and deletion capabilities (O[Log(n)]) instead of O[n] for StringBuffer/StringBuilder).
TextBuilder
           This class represents an Appendable text whose capacity expands gently without incurring expensive resize/copy operations ever.
TextFormat
           This class represents the base format for text parsing and formatting; it supports the CharSequence and Appendable interfaces for greater flexibility.
 

Classes in javolution.text used by javolution.util
Text
           This class represents an immutable character sequence with fast concatenation, insertion and deletion capabilities (O[Log(n)]) instead of O[n] for StringBuffer/StringBuilder).
 

Classes in javolution.text used by javolution.xml
CharArray
           This class represents a CharSequence backed up by a char array.
 

Classes in javolution.text used by javolution.xml.sax
CharArray
           This class represents a CharSequence backed up by a char array.
 

Classes in javolution.text used by javolution.xml.stream
CharArray
           This class represents a CharSequence backed up by a char array.
 



Copyright © 2005-2012 Javolution. All Rights Reserved.