Uses of Interface
pivot.serialization.Serializer

Packages that use Serializer
pivot.serialization Contains a set of classes for use in data serialization. 
pivot.web Provides classes for communicating with HTTP-based web services. 
pivot.web.server Contains classes to facilitate access to and development of web query services. 
pivot.wtk.media Contains classes that provide multimedia support. 
pivot.wtk.text Contains classes representing a text object model. 
pivot.wtkx Provides support for loading WTK components and other classes from XML. 
 

Uses of Serializer in pivot.serialization
 

Classes in pivot.serialization that implement Serializer
 class BinarySerializer
          Implementation of the Serializer interface that uses Java's internal serialization mechanism to read and write values.
 class ByteArraySerializer
          Implementation of the Serializer interface that reads and writes a byte array.
 class CSVSerializer
          Implementation of the Serializer interface that reads data from and writes data to a comma-separated value (CSV) file.
 class JSONSerializer
          Implementation of the Serializer interface that reads data from and writes data to a JavaScript Object Notation (JSON) file.
 class PropertiesSerializer
          Implementation of the Serializer interface that reads data from and writes data to the Java properties file format.
 

Uses of Serializer in pivot.web
 

Methods in pivot.web that return Serializer
 Serializer<?> Query.getSerializer()
          Returns the serializer used to stream the value passed to or from the web query.
 

Methods in pivot.web with parameters of type Serializer
 void Query.setSerializer(Serializer<?> serializer)
          Sets the serializer used to stream the value passed to or from the web query.
 

Uses of Serializer in pivot.web.server
 

Methods in pivot.web.server that return Serializer
 Serializer<?> QueryServlet.getSerializer()
          Returns the serializer used to stream the value passed to or from the web query.
 

Methods in pivot.web.server with parameters of type Serializer
 void QueryServlet.setSerializer(Serializer<?> serializer)
          Sets the serializer used to stream the value passed to or from the web query.
 

Uses of Serializer in pivot.wtk.media
 

Classes in pivot.wtk.media that implement Serializer
 class BufferedImageSerializer
          Implementation of the Serializer interface that reads and writes instances of BufferedImage.
 

Uses of Serializer in pivot.wtk.text
 

Classes in pivot.wtk.text that implement Serializer
 class PlainTextSerializer
          Implementation of the Serializer interface that reads and writes a plain text document.
 

Uses of Serializer in pivot.wtkx
 

Classes in pivot.wtkx that implement Serializer
 class WTKXSerializer
          Loads an object hierarchy from an XML document.