Uses of Interface
org.jboss.marshalling.Marshaller
-
Packages that use Marshaller Package Description org.jboss.marshalling The marshalling API.org.jboss.marshalling.cloner org.jboss.marshalling.river The River protocol implementation package.org.jboss.marshalling.serial org.jboss.marshalling.util -
-
Uses of Marshaller in org.jboss.marshalling
Classes in org.jboss.marshalling that implement Marshaller Modifier and Type Class Description class
AbstractMarshaller
An abstract implementation of theMarshaller
interface.class
ObjectOutputStreamMarshaller
A Marshaller which simply wraps an object stream.Fields in org.jboss.marshalling declared as Marshaller Modifier and Type Field Description private Marshaller
MarshallerObjectOutput. marshaller
private Marshaller
MarshallingObjectOutputStream. marshaller
private Marshaller
MarshallerObjectOutputStream. output
Methods in org.jboss.marshalling that return Marshaller Modifier and Type Method Description Marshaller
MarshallerFactory. createMarshaller(MarshallingConfiguration configuration)
Create a marshaller from this configuration.Methods in org.jboss.marshalling with parameters of type Marshaller Modifier and Type Method Description void
AbstractClassResolver. annotateClass(Marshaller marshaller, java.lang.Class<?> clazz)
Add optional information about a class to a stream.void
ClassResolver. annotateClass(Marshaller marshaller, java.lang.Class<?> clazz)
Add optional information about a class to a stream.void
ModularClassResolver. annotateClass(Marshaller marshaller, java.lang.Class<?> clazz)
Add optional information about a class to a stream.void
AbstractClassResolver. annotateProxyClass(Marshaller marshaller, java.lang.Class<?> proxyClass)
Add optional information about a proxy class to a stream.void
ClassResolver. annotateProxyClass(Marshaller marshaller, java.lang.Class<?> proxyClass)
Add optional information about a proxy class to a stream.void
ModularClassResolver. annotateProxyClass(Marshaller marshaller, java.lang.Class<?> proxyClass)
Add optional information about a proxy class to a stream.void
ByteWriter. writeClass(Marshaller marshaller, java.lang.Class<?> clazz)
void
ClassTable.Writer. writeClass(Marshaller marshaller, java.lang.Class<?> clazz)
Write the predefined class reference to the stream.void
ModularClassTable.ClassWriter. writeClass(Marshaller marshaller, java.lang.Class<?> clazz)
void
ModularClassTable.ProxyWriter. writeClass(Marshaller marshaller, java.lang.Class<?> clazz)
void
ByteWriter. writeObject(Marshaller marshaller, java.lang.Object object)
void
ObjectTable.Writer. writeObject(Marshaller marshaller, java.lang.Object object)
Write the predefined object reference to the stream.Constructors in org.jboss.marshalling with parameters of type Marshaller Constructor Description MarshallerObjectOutput(Marshaller marshaller)
Construct a new instance.MarshallerObjectOutputStream(Marshaller output)
Construct a new instance that delegates to the given marshaller.MarshallingObjectOutputStream(Marshaller marshaller, ByteOutput byteOutput)
Construct a new instance that delegates to the given marshaller. -
Uses of Marshaller in org.jboss.marshalling.cloner
Classes in org.jboss.marshalling.cloner that implement Marshaller Modifier and Type Class Description (package private) class
SerializingCloner.StepObjectOutput
-
Uses of Marshaller in org.jboss.marshalling.river
Classes in org.jboss.marshalling.river that implement Marshaller Modifier and Type Class Description class
BlockMarshaller
class
RiverMarshaller
Methods in org.jboss.marshalling.river that return Marshaller Modifier and Type Method Description Marshaller
RiverMarshallerFactory. createMarshaller(MarshallingConfiguration configuration)
Create a marshaller from this configuration.Methods in org.jboss.marshalling.river with parameters of type Marshaller Modifier and Type Method Description protected void
RiverPutField. write(Marshaller marshaller)
Constructors in org.jboss.marshalling.river with parameters of type Marshaller Constructor Description RiverObjectOutputStream(Marshaller delegateMarshaller, RiverMarshaller marshaller)
-
Uses of Marshaller in org.jboss.marshalling.serial
Classes in org.jboss.marshalling.serial that implement Marshaller Modifier and Type Class Description class
BlockMarshaller
class
SerialMarshaller
Methods in org.jboss.marshalling.serial that return Marshaller Modifier and Type Method Description Marshaller
SerialMarshallerFactory. createMarshaller(MarshallingConfiguration configuration)
-
Uses of Marshaller in org.jboss.marshalling.util
Methods in org.jboss.marshalling.util with parameters of type Marshaller Modifier and Type Method Description void
BooleanFieldPutter. write(Marshaller marshaller)
Write the value of this field in its proper native format.void
ByteFieldPutter. write(Marshaller marshaller)
Write the value of this field in its proper native format.void
CharFieldPutter. write(Marshaller marshaller)
Write the value of this field in its proper native format.void
DoubleFieldPutter. write(Marshaller marshaller)
Write the value of this field in its proper native format.abstract void
FieldPutter. write(Marshaller marshaller)
Write the value of this field in its proper native format.void
FloatFieldPutter. write(Marshaller marshaller)
Write the value of this field in its proper native format.void
IntFieldPutter. write(Marshaller marshaller)
Write the value of this field in its proper native format.void
LongFieldPutter. write(Marshaller marshaller)
Write the value of this field in its proper native format.void
ObjectFieldPutter. write(Marshaller marshaller)
Write the value of this field in its proper native format.void
ShortFieldPutter. write(Marshaller marshaller)
Write the value of this field in its proper native format.
-