Uses of Interface
org.apache.pivot.serialization.Serializer

Packages that use Serializer
org.apache.pivot.beans Contains classes for manipulating and interacting with Java Bean types. 
org.apache.pivot.io Contains classes related to input/output operations. 
org.apache.pivot.json Contains classes that facilitate interaction with JSON and JSON-like data structures. 
org.apache.pivot.serialization Contains a set of classes for use in data serialization. 
org.apache.pivot.xml Contains classes that facilitate interaction with an XML DOM. 
 

Uses of Serializer in org.apache.pivot.beans
 

Classes in org.apache.pivot.beans that implement Serializer
 class BXMLSerializer
          Loads an object hierarchy from an XML document.
 

Methods in org.apache.pivot.beans that return Serializer
protected  Serializer<?> BXMLSerializer.newIncludeSerializer(Class<? extends Serializer<?>> type)
          Creates a new serializer to be used on a nested include.
 

Methods in org.apache.pivot.beans that return types with arguments of type Serializer
static Map<String,Class<? extends Serializer<?>>> BXMLSerializer.getMimeTypes()
          Returns the MIME type/serializer class map.
 

Method parameters in org.apache.pivot.beans with type arguments of type Serializer
protected  Serializer<?> BXMLSerializer.newIncludeSerializer(Class<? extends Serializer<?>> type)
          Creates a new serializer to be used on a nested include.
 

Uses of Serializer in org.apache.pivot.io
 

Classes in org.apache.pivot.io that implement Serializer
 class FileSerializer
          Implementation of the Serializer interface that reads and writes File objects.
 

Uses of Serializer in org.apache.pivot.json
 

Classes in org.apache.pivot.json that implement Serializer
 class JSONSerializer
          Implementation of the Serializer interface that reads data from and writes data to a JavaScript Object Notation (JSON) file.
 

Uses of Serializer in org.apache.pivot.serialization
 

Classes in org.apache.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 PropertiesSerializer
          Implementation of the Serializer interface that reads data from and writes data to the Java properties file format.
 class StringSerializer
          Implementation of the Serializer interface that reads data from and writes data to Java Strings.
 

Uses of Serializer in org.apache.pivot.xml
 

Classes in org.apache.pivot.xml that implement Serializer
 class XMLSerializer
          Reads and writes XML data.