Uses of Interface
org.jboss.marshalling.Unmarshaller
-
Packages that use Unmarshaller Package Description org.jboss.marshalling The marshalling API. -
-
Uses of Unmarshaller in org.jboss.marshalling
Classes in org.jboss.marshalling that implement Unmarshaller Modifier and Type Class Description class
AbstractUnmarshaller
An abstract implementation of theUnmarshaller
interface.class
ObjectInputStreamUnmarshaller
An Unmarshaller which simply wraps an object stream.Methods in org.jboss.marshalling that return Unmarshaller Modifier and Type Method Description Unmarshaller
MarshallerFactory. createUnmarshaller(MarshallingConfiguration configuration)
Create an unmarshaller from this configuration.Methods in org.jboss.marshalling with parameters of type Unmarshaller Modifier and Type Method Description Class<?>
ChainingClassTable. readClass(Unmarshaller unmarshaller)
Read a class from the stream.Class<?>
ClassTable. readClass(Unmarshaller unmarshaller)
Read a class from the stream.Class<?>
ModularClassTable. readClass(Unmarshaller unmarshaller)
Read a class from the stream.Object
ChainingObjectTable. readObject(Unmarshaller unmarshaller)
Read an instance from the stream.Object
ObjectTable. readObject(Unmarshaller unmarshaller)
Read an instance from the stream.Class<?>
AbstractClassResolver. resolveClass(Unmarshaller unmarshaller, String name, long serialVersionUID)
Load the local class for a class descriptor.Class<?>
ClassResolver. resolveClass(Unmarshaller unmarshaller, String name, long serialVersionUID)
Load the local class for a class descriptor.Class<?>
ModularClassResolver. resolveClass(Unmarshaller unmarshaller, String className, long serialVersionUID)
Load the local class for a class descriptor.Class<?>
AbstractClassResolver. resolveProxyClass(Unmarshaller unmarshaller, String[] interfaces)
Load a proxy class that implements the given interfaces.Class<?>
ClassResolver. resolveProxyClass(Unmarshaller unmarshaller, String[] interfaces)
Load a proxy class that implements the given interfaces.Class<?>
ModularClassResolver. resolveProxyClass(Unmarshaller unmarshaller, String[] names)
Load a proxy class that implements the given interfaces.Constructors in org.jboss.marshalling with parameters of type Unmarshaller Constructor Description MarshallerObjectInput(Unmarshaller unmarshaller)
Construct a new instance.MarshallerObjectInputStream(Unmarshaller input)
Construct a new instance which delegates to the given unmarshaller.UnmarshallingObjectInputStream(Unmarshaller unmarshaller, InputStream stream)
Construct a new instance which delegates to the given unmarshaller, reading from the given input.UnmarshallingObjectInputStream(Unmarshaller unmarshaller, ByteInput byteInput)
Construct a new instance which delegates to the given unmarshaller, reading from the given input.
-