Uses of Class
org.apache.pivot.serialization.SerializationException

Packages that use SerializationException
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.util Contains a collection of common utility classes. 
org.apache.pivot.wtk Contains classes that define the structure and behavior of WTK user interface components. 
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.wtkx Provides support for loading WTK components and other classes from XML. 
org.apache.pivot.xml Contains classes that facilitate interaction with an XML DOM. 
 

Uses of SerializationException in org.apache.pivot.io
 

Methods in org.apache.pivot.io that throw SerializationException
 File FileSerializer.readObject(InputStream inputStream)
          Reads a file from an input stream.
 void FileSerializer.writeObject(File file, OutputStream outputStream)
          Writes a file to an output stream.
 

Uses of SerializationException in org.apache.pivot.json
 

Methods in org.apache.pivot.json that throw SerializationException
static Object JSONSerializer.parse(String json)
          Converts a JSON value to a Java object.
static Boolean JSONSerializer.parseBoolean(String json)
          Converts a JSON value to a boolean.
static Double JSONSerializer.parseDouble(String json)
          Converts a JSON value to a double.
static Float JSONSerializer.parseFloat(String json)
          Converts a JSON value to a float.
static Integer JSONSerializer.parseInteger(String json)
          Converts a JSON value to a integer.
static List<?> JSONSerializer.parseList(String json)
          Converts a JSON value to a list.
static Long JSONSerializer.parseLong(String json)
          Converts a JSON value to a long.
static Map<String,?> JSONSerializer.parseMap(String json)
          Converts a JSON value to a map.
static Number JSONSerializer.parseNumber(String json)
          Converts a JSON value to a number.
static Short JSONSerializer.parseShort(String json)
          Converts a JSON value to a short.
static String JSONSerializer.parseString(String json)
          Converts a JSON value to a string.
 Object JSONSerializer.readObject(InputStream inputStream)
          Reads data from a JSON stream.
 Object JSONSerializer.readObject(Reader reader)
          Reads data from a JSON stream.
static String JSONSerializer.toString(Object value)
          Converts a object to a JSON string representation.
 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.
 

Uses of SerializationException in org.apache.pivot.serialization
 

Methods in org.apache.pivot.serialization that throw SerializationException
 Object CSVSerializer.StreamIterator.next()
           
 List<?> CSVSerializer.readObject(InputStream inputStream)
          Reads values from a comma-separated value stream.
 Object BinarySerializer.readObject(InputStream inputStream)
          Reads a graph of serialized objects from an input stream.
 Map<?,?> PropertiesSerializer.readObject(InputStream inputStream)
          Reads data from a properties stream.
 T Serializer.readObject(InputStream inputStream)
          Reads an object from an input 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.
 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 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 Serializer.writeObject(T object, OutputStream outputStream)
          Writes an object to an output stream.
 

Uses of SerializationException in org.apache.pivot.util
 

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

Uses of SerializationException in org.apache.pivot.wtk
 

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

Uses of SerializationException in org.apache.pivot.wtk.media
 

Methods in org.apache.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 org.apache.pivot.wtk.text
 

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

Uses of SerializationException in org.apache.pivot.wtkx
 

Methods in org.apache.pivot.wtkx that throw SerializationException
 Object WTKXSerializer.readObject(Class<?> baseType, String resourceName)
           
 Object WTKXSerializer.readObject(InputStream inputStream)
           
 Object WTKXSerializer.readObject(Object baseObject, String resourceName)
           
 Object WTKXSerializer.readObject(String resourceName)
           
 Object WTKXSerializer.readObject(URL location)
           
 void WTKXSerializer.writeObject(Object object, OutputStream outputStream)
           
 

Uses of SerializationException in org.apache.pivot.xml
 

Methods in org.apache.pivot.xml that throw SerializationException
 Element XMLSerializer.readObject(InputStream inputStream)
           
 Element XMLSerializer.readObject(Reader reader)
           
 void XMLSerializer.writeObject(Element element, OutputStream outputStream)
           
 void XMLSerializer.writeObject(Element element, Writer writer)