Uses of Interface
org.apache.pivot.serialization.Serializer
-
Packages that use Serializer Package Description 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.web Provides classes for communicating with HTTP-based web services.org.apache.pivot.web.server Contains classes to facilitate access to and development of web query services.org.apache.pivot.wtk.media Contains classes that provide multimedia support.org.apache.pivot.wtk.text Contains classes representing a text object model.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 Modifier and Type Class Description class
BXMLSerializer
Loads an object hierarchy from an XML document.Methods in org.apache.pivot.beans that return Serializer Modifier and Type Method Description protected Serializer<?>
BXMLSerializer. newIncludeSerializer(java.lang.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 Modifier and Type Method Description static Map<java.lang.String,java.lang.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 Modifier and Type Method Description protected Serializer<?>
BXMLSerializer. newIncludeSerializer(java.lang.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 Modifier and Type Class Description class
FileSerializer
Implementation of theSerializer
interface that reads and writesFile
objects. -
Uses of Serializer in org.apache.pivot.json
Classes in org.apache.pivot.json that implement Serializer Modifier and Type Class Description class
JSONSerializer
Implementation of theSerializer
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 Modifier and Type Class Description class
BinarySerializer
Implementation of theSerializer
interface that uses Java's internal serialization mechanism to read and write values.class
ByteArraySerializer
Implementation of theSerializer
interface that reads and writes a byte array.class
CSVSerializer
Implementation of theSerializer
interface that reads data from and writes data to a comma-separated value (CSV) file.class
PropertiesSerializer
Implementation of theSerializer
interface that reads data from and writes data to the Java properties file format.class
StringSerializer
Implementation of theSerializer
interface that reads data from and writes data to Java Strings. -
Uses of Serializer in org.apache.pivot.web
Methods in org.apache.pivot.web that return Serializer Modifier and Type Method Description Serializer<?>
Query. getSerializer()
Returns the serializer used to stream the value passed to or from the web query.Methods in org.apache.pivot.web with parameters of type Serializer Modifier and Type Method Description void
Query. setSerializer(Serializer<?> serializer)
Sets the serializer used to stream the value passed to or from the web query. -
Uses of Serializer in org.apache.pivot.web.server
Methods in org.apache.pivot.web.server that return Serializer Modifier and Type Method Description protected abstract Serializer<?>
QueryServlet. createSerializer(Query.Method method, QueryServlet.Path path)
Creates a serializer that will be used to serialize the current request data. -
Uses of Serializer in org.apache.pivot.wtk.media
Classes in org.apache.pivot.wtk.media that implement Serializer Modifier and Type Class Description class
BufferedImageSerializer
Implementation of theSerializer
interface that reads and writes instances ofBufferedImage
.class
SVGDiagramSerializer
SVG diagram serializer. -
Uses of Serializer in org.apache.pivot.wtk.text
Classes in org.apache.pivot.wtk.text that implement Serializer Modifier and Type Class Description class
PlainTextSerializer
Implementation of theSerializer
interface that reads and writes a plain text document. -
Uses of Serializer in org.apache.pivot.xml
Classes in org.apache.pivot.xml that implement Serializer Modifier and Type Class Description class
XMLSerializer
Reads and writes XML data.
-