Package org.apache.tapestry.util.io
SinceNot specified.
VersionNot specified.
AuthorHoward Lewis Ship <a href="mailto:hlship@apache.org">hlship@apache.org</a>
Wiki javadoc Use textile entry format.
Add your comments here.
Interfaces
ISqueezeAdaptor Interface which defines a class used to convert data for a specific Java type into a String format (squeeze it), or convert from a String back into a Java type (unsqueeze).
Classes
BinaryDumpOutputStream A kind of super-formatter.
CharacterAdaptor Squeezes a Character.
ComponentAddressAdaptor Squeezes a org.apache.tapestry.ComponentAddress.
DataSqueezer A class used to convert arbitrary objects to Strings and back.
EnumAdaptor Adaptor for Enum classes.
ResolvingObjectInputStream Specialized subclass of ObjectInputStream that knows how to resolve classes with a non-default class loader (represented by an instance of IResourceResolver ).

Some interesting I/O classes. BinaryDumpOutputStream formats a stream of bytes into a human readable presentation, much like the Unix command line tool od.

DataSqueezer is used to squeeze and unsqueeze basic scalar types, Strings and serializable objects into a String format. The eventual purpose is to safely encode information into URLs or as HTTP Cookies.