Uses of Class
pivot.serialization.SerializationException

Packages that use SerializationException
pivot.serialization Contains a set of classes for use in data serialization. 
pivot.util Contains a collection of common utility classes. 
pivot.wtk Contains classes that define the structure and behavior of WTK user interface components. 
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 SerializationException in pivot.serialization
 

Methods in pivot.serialization that throw SerializationException
 Object CSVSerializer.StreamIterator.next()
           
 Map<?,?> PropertiesSerializer.readObject(InputStream inputStream)
          Reads data from a properties stream.
 List<?> CSVSerializer.readObject(InputStream inputStream)
          Reads values from a comma-separated value stream.
 T Serializer.readObject(InputStream inputStream)
          Reads an object from an input stream.
 Object BinarySerializer.readObject(InputStream inputStream)
          Reads a graph of serialized objects from an input stream.
 Object JSONSerializer.readObject(InputStream inputStream)
          Reads data from a JSON stream.
 byte[] ByteArraySerializer.readObject(InputStream inputStream)
          Reads a byte array from an input stream.
 List<?> CSVSerializer.readObject(Reader reader)
          Reads values from a comma-separated value stream.
 Object JSONSerializer.readObject(Reader reader)
          Reads data from a JSON stream.
 void ByteArraySerializer.writeObject(byte[] bytes, OutputStream outputStream)
          Writes a byte array to an output stream.
 void CSVSerializer.writeObject(List<?> items, OutputStream outputStream)
          Writes values to a comma-separated value stream.
 void CSVSerializer.writeObject(List<?> items, Writer writer)
          Writes values to a comma-separated value stream.
 void PropertiesSerializer.writeObject(Map<?,?> object, OutputStream outputStream)
          Writes data to a properties stream.
 void BinarySerializer.writeObject(Object object, OutputStream outputStream)
          Writes a graph of serializable objects to an output stream.
 void JSONSerializer.writeObject(Object object, OutputStream outputStream)
          Writes data to a JSON stream.
 void JSONSerializer.writeObject(Object object, Writer writer)
          Writes data to a JSON stream.
 void Serializer.writeObject(T object, OutputStream outputStream)
          Writes an object to an output stream.
 

Uses of SerializationException in pivot.util
 

Constructors in pivot.util that throw SerializationException
Resources(String baseName)
           
Resources(String baseName, Charset charset)
           
Resources(String baseName, Locale locale)
           
Resources(String baseName, Locale locale, Charset charset)
          Creates a new resource bundle.
Resources(String baseName, Locale locale, String charsetName)
           
Resources(String baseName, String charsetName)
           
 

Uses of SerializationException in pivot.wtk
 

Methods in pivot.wtk that throw SerializationException
 void Component.setStyles(URL styles)
          Applies a set of styles.
 

Uses of SerializationException in pivot.wtk.media
 

Methods in pivot.wtk.media that throw SerializationException
 BufferedImage BufferedImageSerializer.readObject(InputStream inputStream)
          Reads a serialized image from an input stream.
 void BufferedImageSerializer.writeObject(BufferedImage bufferedImage, OutputStream outputStream)
          Writes a buffered image to an output stream.
 

Uses of SerializationException in pivot.wtk.text
 

Methods in pivot.wtk.text that throw SerializationException
 Document PlainTextSerializer.readObject(InputStream inputStream)
           
 Document PlainTextSerializer.readObject(Reader reader)
           
 void PlainTextSerializer.writeObject(Document document, OutputStream outputStream)
           
 void PlainTextSerializer.writeObject(Document document, Writer writer)
           
 

Uses of SerializationException in pivot.wtkx
 

Methods in pivot.wtkx that throw SerializationException
 Object WTKXSerializer.readObject(InputStream inputStream)
           
 Object WTKXSerializer.readObject(String resourceName)
           
 Object WTKXSerializer.readObject(URL location)
           
 void WTKXSerializer.writeObject(Object object, OutputStream outputStream)