Uses of Class
org.apache.pivot.serialization.SerializationException
-
Packages that use SerializationException 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.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.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 Modifier and Type Method Description java.lang.Object
BXMLSerializer. readObject(java.io.InputStream inputStream)
Deserializes an object hierarchy from a BXML resource.java.lang.Object
BXMLSerializer. readObject(java.lang.Class<?> baseType, java.lang.String resourceName)
Deserializes an object hierarchy from a BXML resource, and do not localize any text.java.lang.Object
BXMLSerializer. readObject(java.lang.Class<?> baseType, java.lang.String resourceName, boolean localize)
Deserializes an object hierarchy from a BXML resource.java.lang.Object
BXMLSerializer. readObject(java.net.URL locationArgument)
Deserializes an object hierarchy from a BXML resource.java.lang.Object
BXMLSerializer. readObject(java.net.URL locationArgument, Resources resourcesArgument)
Deserializes an object hierarchy from a BXML resource.void
BXMLSerializer. writeObject(java.lang.Object object, java.io.OutputStream outputStream)
-
Uses of SerializationException in org.apache.pivot.io
Methods in org.apache.pivot.io that throw SerializationException Modifier and Type Method Description java.io.File
FileSerializer. readObject(java.io.InputStream inputStream)
Reads a file from an input stream.void
FileSerializer. writeObject(java.io.File file, java.io.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 Modifier and Type Method Description static java.lang.Object
JSONSerializer. parse(java.lang.String json)
Converts a JSON value to a Java object.static java.lang.Boolean
JSONSerializer. parseBoolean(java.lang.String json)
Converts a JSON value to a boolean.static java.lang.Double
JSONSerializer. parseDouble(java.lang.String json)
Converts a JSON value to a double.static java.lang.Float
JSONSerializer. parseFloat(java.lang.String json)
Converts a JSON value to a float.static java.lang.Integer
JSONSerializer. parseInteger(java.lang.String json)
Converts a JSON value to a integer.static List<?>
JSONSerializer. parseList(java.lang.String json)
Converts a JSON value to a list.static java.lang.Long
JSONSerializer. parseLong(java.lang.String json)
Converts a JSON value to a long.static Map<java.lang.String,?>
JSONSerializer. parseMap(java.lang.String json)
Converts a JSON value to a map.static java.lang.Number
JSONSerializer. parseNumber(java.lang.String json)
Converts a JSON value to a number.static java.lang.Short
JSONSerializer. parseShort(java.lang.String json)
Converts a JSON value to a short.static java.lang.String
JSONSerializer. parseString(java.lang.String json)
Converts a JSON value to a string.java.lang.Object
JSONSerializer. readObject(java.io.InputStream inputStream)
Reads data from a JSON stream.java.lang.Object
JSONSerializer. readObject(java.io.Reader reader)
Reads data from a JSON stream.static java.lang.String
JSONSerializer. toString(java.lang.Object value)
Converts a object to a JSON string representation.static java.lang.String
JSONSerializer. toString(java.lang.Object value, boolean alwaysDelimitMapKeys)
Converts a object to a JSON string representation.void
JSONSerializer. writeObject(java.lang.Object object, java.io.OutputStream outputStream)
Writes data to a JSON stream.void
JSONSerializer. writeObject(java.lang.Object object, java.io.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 Modifier and Type Method Description java.lang.Object
BinarySerializer. readObject(java.io.InputStream inputStream)
Reads a graph of serialized objects from an input stream.byte[]
ByteArraySerializer. readObject(java.io.InputStream inputStream)
Reads a byte array from an input stream.List<?>
CSVSerializer. readObject(java.io.InputStream inputStream)
Reads values from a comma-separated value stream.List<?>
CSVSerializer. readObject(java.io.Reader reader)
Reads values from a comma-separated value stream.Map<?,?>
PropertiesSerializer. readObject(java.io.InputStream inputStream)
Reads data from a properties stream.T
Serializer. readObject(java.io.InputStream inputStream)
Reads an object from an input stream.java.lang.String
StringSerializer. readObject(java.io.InputStream inputStream)
Reads plain text data from an input stream, interpreted by the givenCharset
.void
BinarySerializer. writeObject(java.lang.Object object, java.io.OutputStream outputStream)
Writes a graph of serializable objects to an output stream.void
ByteArraySerializer. writeObject(byte[] bytes, java.io.OutputStream outputStream)
Writes a byte array to an output stream.void
CSVSerializer. writeObject(List<?> items, java.io.OutputStream outputStream)
Writes values to a comma-separated value stream.void
PropertiesSerializer. writeObject(Map<?,?> object, java.io.OutputStream outputStream)
Writes data to a properties stream.void
Serializer. writeObject(T object, java.io.OutputStream outputStream)
Writes an object to an output stream.void
StringSerializer. writeObject(java.lang.String text, java.io.OutputStream outputStream)
Writes plain text data to an output stream, encoded in the givenCharset
. -
Uses of SerializationException in org.apache.pivot.util
Constructors in org.apache.pivot.util that throw SerializationException Constructor Description Resources(java.lang.String baseName)
Resources(java.lang.String baseName, java.nio.charset.Charset charset)
Resources(java.lang.String baseName, java.util.Locale locale)
Resources(Resources parent, java.lang.String baseName)
Resources(Resources parent, java.lang.String baseName, java.nio.charset.Charset charset)
Resources(Resources parent, java.lang.String baseName, java.util.Locale locale)
Resources(Resources parent, java.lang.String baseName, java.util.Locale locale, java.nio.charset.Charset charset)
Creates a new resource bundle. -
Uses of SerializationException in org.apache.pivot.wtk
Methods in org.apache.pivot.wtk that throw SerializationException Modifier and Type Method Description void
Component. setStyles(java.lang.String 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 Modifier and Type Method Description java.awt.image.BufferedImage
BufferedImageSerializer. readObject(java.io.InputStream inputStream)
Reads a serialized image from an input stream.void
BufferedImageSerializer. writeObject(java.awt.image.BufferedImage bufferedImage, java.io.OutputStream outputStream)
Writes a buffered image to an output stream. -
Uses of SerializationException in org.apache.pivot.xml
Methods in org.apache.pivot.xml that throw SerializationException Modifier and Type Method Description Element
XMLSerializer. readObject(java.io.InputStream inputStream)
Element
XMLSerializer. readObject(java.io.Reader reader)
void
XMLSerializer. writeObject(Element element, java.io.OutputStream outputStream)
void
XMLSerializer. writeObject(Element element, java.io.Writer writer)
-