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

Packages that use SerializationException
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. 
 

Uses of SerializationException in org.apache.pivot.serialization
 

Methods in org.apache.pivot.serialization that throw SerializationException
 Object CSVSerializer.StreamIterator.next()
           
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.
 Map<?,?> PropertiesSerializer.readObject(InputStream inputStream)
          Reads data from a properties stream.
 byte[] ByteArraySerializer.readObject(InputStream inputStream)
          Reads a byte array from an input 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(Reader reader)
          Reads data from a JSON stream.
 List<?> CSVSerializer.readObject(Reader reader)
          Reads values from a comma-separated value stream.
static String JSONSerializer.toString(Object value)
          Converts a object to a JSON string representation.
 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 JSONSerializer.writeObject(Object object, OutputStream outputStream)
          Writes data to a JSON stream.
 void BinarySerializer.writeObject(Object object, OutputStream outputStream)
          Writes a graph of serializable objects to an output 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 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(Resources parent, String baseName, Locale locale, String charsetName)
           
Resources(Resources parent, String baseName, String charsetName)
           
Resources(String baseName)
           
Resources(String baseName, Charset charset)
           
Resources(String baseName, Locale locale)
           
Resources(String baseName, Locale locale, String charsetName)
           
Resources(String baseName, String charsetName)
           
 

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)
           
 Document PlainTextSerializer.readObject(Reader reader)
           
 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)