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

Packages that use SerializationException
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.util Contains a collection of common utility classes. 
org.apache.pivot.xml Contains classes that facilitate interaction with an XML DOM. 
 

Uses of SerializationException in org.apache.pivot.beans
 

Methods in org.apache.pivot.beans that throw SerializationException
 Object BXMLSerializer.readObject(Class<?> baseType, String resourceName)
          Deserializes an object hierarchy from a BXML resource.
 Object BXMLSerializer.readObject(Class<?> baseType, String resourceName, boolean localize)
          Deserializes an object hierarchy from a BXML resource.
 Object BXMLSerializer.readObject(InputStream inputStream)
          Deserializes an object hierarchy from a BXML resource.
 Object BXMLSerializer.readObject(URL locationArgument)
          Deserializes an object hierarchy from a BXML resource.
 Object BXMLSerializer.readObject(URL locationArgument, Resources resourcesArgument)
          Deserializes an object hierarchy from a BXML resource.
 void BXMLSerializer.writeObject(Object object, OutputStream outputStream)
           
 

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.
static String JSONSerializer.toString(Object value, boolean alwaysDelimitMapKeys)
          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 BinarySerializer.readObject(InputStream inputStream)
          Reads a graph of serialized objects from an input stream.
 List<?> CSVSerializer.readObject(InputStream inputStream)
          Reads values from a comma-separated value stream.
 byte[] ByteArraySerializer.readObject(InputStream inputStream)
          Reads a byte array from an input stream.
 String StringSerializer.readObject(InputStream inputStream)
          Reads plain text data from an input stream, interpreted by the given Charset.
 Map<?,?> PropertiesSerializer.readObject(InputStream inputStream)
          Reads data from a properties stream.
 T Serializer.readObject(InputStream inputStream)
          Reads an object 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 StringSerializer.writeObject(String text, OutputStream outputStream)
          Writes plain text data to an output stream, encoded in the given Charset.
 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.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)