| Interface | Description |
|---|---|
| Appendable |
This interface is replaced by
java.lang.Appendable
in JDK 1.5+. |
| Class | Description |
|---|---|
| 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. |
| TypeFormat |
This class provides utility methods to parse
CharSequence into primitive types and to format
primitive types into any Appendable. |
Copyright © 2005–2024 Javolution. All rights reserved.