Errai 3.0.1-SNAPSHOT

Uses of Interface
org.jboss.errai.marshalling.client.api.Marshaller

Packages that use Marshaller
org.jboss.errai.marshalling.client   
org.jboss.errai.marshalling.client.api   
org.jboss.errai.marshalling.client.marshallers   
org.jboss.errai.marshalling.client.protocols   
org.jboss.errai.marshalling.client.util   
org.jboss.errai.marshalling.rebind.api   
org.jboss.errai.marshalling.rebind.api.model   
org.jboss.errai.marshalling.server.api   
org.jboss.errai.marshalling.server.marshallers   
 

Uses of Marshaller in org.jboss.errai.marshalling.client
 

Methods in org.jboss.errai.marshalling.client that return Marshaller
static
<T> Marshaller<T>
Marshalling.getMarshaller(Class<T> type)
          Returns a marshaller for the type with the provided fully qualified class name.
static
<T> Marshaller<T>
Marshalling.getMarshaller(Class<T> type, DeferredMarshallerCreationCallback<T> creationCallback)
          Returns a marshaller for the type with the provided fully qualified class name.
 

Uses of Marshaller in org.jboss.errai.marshalling.client.api
 

Subinterfaces of Marshaller in org.jboss.errai.marshalling.client.api
 interface GeneratedMarshaller<T>
          Represents a marshaller that is generated at rebind time (i.e.
 

Classes in org.jboss.errai.marshalling.client.api that implement Marshaller
 class ArrayMarshallerWrapper
          A marshaller that wraps another marshaller, producing and consuming arrays of objects handled by that marshaller.
 

Methods in org.jboss.errai.marshalling.client.api that return Marshaller
 Marshaller<T> DeferredMarshallerCreationCallback.create(Class<T> type)
          Create a marshaller for the provided type.
 Marshaller<Object> MarshallerFactory.getMarshaller(String encodedType)
          Returns a Marshaller capable of handling the specified encodedType
 Marshaller<Object> MappingContext.getMarshaller(String clazz)
          Returns the Marshaller instance that can handle the given type.
 Marshaller<Object> MarshallingSession.getMarshallerInstance(String fqcn)
          Returns a marshaller for the provided type.
 Marshaller<Object> AbstractMarshallingSession.getMarshallerInstance(String fqcn)
           
 

Methods in org.jboss.errai.marshalling.client.api with parameters of type Marshaller
 void MarshallerFactory.registerMarshaller(String fqcn, Marshaller<Object> marshaller)
          Registers a Marshaller for the type with the provided fully qualified class name.
 

Constructors in org.jboss.errai.marshalling.client.api with parameters of type Marshaller
ArrayMarshallerWrapper(Marshaller<?> wrappedMarshaller)
           
 

Uses of Marshaller in org.jboss.errai.marshalling.client.marshallers
 

Classes in org.jboss.errai.marshalling.client.marshallers that implement Marshaller
 class AbstractBackReferencingMarshaller<C>
           
 class AbstractCollectionMarshaller<C extends Collection>
           
 class AbstractNullableMarshaller<T>
          Handles null-ing of types as a simple wrapper.
 class AbstractNumberMarshaller<C extends Number>
           
 class BigDecimalMarshaller
           
 class BigIntegerMarshaller
           
 class BooleanMarshaller
           
 class ByteMarshaller
           
 class CharacterMarshaller
           
 class DateMarshaller
           
 class DoubleMarshaller
           
 class ErraiProtocolEnvelopeMarshaller
           
 class ErraiProtocolEnvelopeNoAutoMarshaller
           
 class FallbackExceptionMarshaller
          this marshaller is intentionally not marked ServerMarshaller or ClientMarshaller because it is used only to marshal exceptions not handled elsewhere
 class FloatMarshaller
           
 class IntegerMarshaller
           
 class LinkedHashSetMarshaller
           
 class LinkedListMarshaller
           
 class LinkedMapMarshaller
           
 class ListMarshaller
           
 class LongMarshaller
           
 class MapMarshaller<T extends Map<Object,Object>>
           
 class ObjectMarshaller
          This class is used to handle untyped Objects on the wire.
 class PriorityQueueMarshaller
           
 class QualifyingMarshallerWrapper<T>
          Used to wrap marshallers annotated with AlwaysQualify
 class QueueMarshaller
           
 class SetMarshaller
           
 class ShortMarshaller
           
 class SortedMapMarshaller
           
 class SortedSetMarshaller
           
 class SQLDateMarshaller
           
 class StringBufferMarshaller
           
 class StringBuilderMarshaller
           
 class StringMarshaller
           
 class TimeMarshaller
           
 class TimestampMarshaller
           
 

Constructors in org.jboss.errai.marshalling.client.marshallers with parameters of type Marshaller
QualifyingMarshallerWrapper(Marshaller<T> delegate, Class<T> type)
           
 

Uses of Marshaller in org.jboss.errai.marshalling.client.protocols
 

Methods in org.jboss.errai.marshalling.client.protocols that return Marshaller
 Marshaller MarshallingSessionProvider.getMarshaller(String fqcn)
           
 

Methods in org.jboss.errai.marshalling.client.protocols with parameters of type Marshaller
 void MarshallingSessionProvider.registerMarshaller(String fqcn, Marshaller m)
           
 

Uses of Marshaller in org.jboss.errai.marshalling.client.util
 

Methods in org.jboss.errai.marshalling.client.util that return Marshaller
static Marshaller<Object> MarshallUtil.getMarshaller(Object obj, MarshallingSession session)
           
static Marshaller<Object> MarshallUtil.getQualifiedNumberMarshaller(Object o)
           
static
<T> Marshaller<T>
EncDecUtil.qualifyMarshaller(Marshaller<T> marshaller, Class<T> type)
          Ensure the marshaller is qualified on the wire using a wrapping marshaller.
 

Methods in org.jboss.errai.marshalling.client.util with parameters of type Marshaller
static
<T> Marshaller<T>
EncDecUtil.qualifyMarshaller(Marshaller<T> marshaller, Class<T> type)
          Ensure the marshaller is qualified on the wire using a wrapping marshaller.
 

Uses of Marshaller in org.jboss.errai.marshalling.rebind.api
 

Methods in org.jboss.errai.marshalling.rebind.api that return Marshaller
 Marshaller<Object> GeneratorMappingContext.getMarshaller(String clazz)
           
 

Uses of Marshaller in org.jboss.errai.marshalling.rebind.api.model
 

Methods in org.jboss.errai.marshalling.rebind.api.model that return Marshaller
 Marshaller<Object> MappingDefinition.getMarshallerInstance()
           
 

Methods in org.jboss.errai.marshalling.rebind.api.model that return types with arguments of type Marshaller
 Class<? extends Marshaller> MappingDefinition.getClientMarshallerClass()
           
 Class<? extends Marshaller> MappingDefinition.getServerMarshallerClass()
           
 

Methods in org.jboss.errai.marshalling.rebind.api.model with parameters of type Marshaller
 void MappingDefinition.setMarshallerInstance(Marshaller marshallerInstance)
           
 

Method parameters in org.jboss.errai.marshalling.rebind.api.model with type arguments of type Marshaller
 void MappingDefinition.setClientMarshallerClass(Class<? extends Marshaller> clientMarshallerClass)
           
 void MappingDefinition.setServerMarshallerClass(Class<? extends Marshaller> serverMarshallerClass)
           
 

Constructors in org.jboss.errai.marshalling.rebind.api.model with parameters of type Marshaller
MappingDefinition(Marshaller<Object> marshaller, MetaClass toMap, boolean doNotGenerate)
           
 

Uses of Marshaller in org.jboss.errai.marshalling.server.api
 

Subinterfaces of Marshaller in org.jboss.errai.marshalling.server.api
 interface ServerMarshaller<V>
           
 

Uses of Marshaller in org.jboss.errai.marshalling.server.marshallers
 

Classes in org.jboss.errai.marshalling.server.marshallers that implement Marshaller
 class DefaultArrayMarshaller
           
 class DefaultDefinitionMarshaller
           
 class DefaultEnumMarshaller
           
 

Constructors in org.jboss.errai.marshalling.server.marshallers with parameters of type Marshaller
DefaultArrayMarshaller(MetaClass arrayType, Marshaller<Object> outerMarshaller)
           
 


Errai 3.0.1-SNAPSHOT

Copyright © 2013-2014 JBoss, a division of Red Hat. All Rights Reserved.