Interface CombinedSerializer

All Superinterfaces:
javax.xml.rpc.encoding.Deserializer, JAXRPCDeserializer, JAXRPCSerializer, Serializable, javax.xml.rpc.encoding.Serializer
All Known Implementing Classes:
ArraySerializerBase, AttachmentSerializer, CollectionInterfaceSerializer, CollectionSerializer, CollectionSerializerBase, DetailFragmentDeserializer, DummySerializer, DynamicSerializer, GenericLiteralObjectSerializer, GenericObjectSerializer, InterfaceSerializerBase, JAXRpcMapEntrySerializer, LiteralArraySerializer, LiteralFragmentSerializer, LiteralObjectArraySerializer, LiteralObjectSerializerBase, LiteralRequestSerializer, LiteralResponseSerializer, LiteralSimpleTypeSerializer, MapInterfaceSerializer, MapSerializer, ObjectArraySerializer, ObjectSerializerBase, PolymorphicArraySerializer, ReferenceableSerializerImpl, SerializerBase, SimpleMultiTypeSerializer, SimpleTypeArraySerializer, SimpleTypeSerializer, SOAPFaultInfoSerializer, SOAPRequestSerializer, SOAPResponseSerializer, StructMapSerializer, ValueTypeLiteralSerializer, ValueTypeSerializer

public interface CombinedSerializer extends JAXRPCSerializer, JAXRPCDeserializer
All serializers in the JAX-RPC SI extend this interface.
Author:
JAX-RPC Development Team
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Returns whether xsi:type information will be encoded
    Returns the encodingStyle of this serializer
    Returns the serializer that actually does the serialization
    Returns the XML schema type processed by this serializer.
    boolean
    Returns whether serializer allows null values

    Methods inherited from interface javax.xml.rpc.encoding.Deserializer

    getMechanismType

    Methods inherited from interface com.sun.xml.rpc.encoding.JAXRPCDeserializer

    deserialize, deserialize

    Methods inherited from interface com.sun.xml.rpc.encoding.JAXRPCSerializer

    serialize

    Methods inherited from interface javax.xml.rpc.encoding.Serializer

    getMechanismType
  • Method Details

    • getXmlType

      QName getXmlType()
      Returns the XML schema type processed by this serializer.
      Returns:
      Returns the XML schema type processed by this serializer.
    • getEncodeType

      boolean getEncodeType()
      Returns whether xsi:type information will be encoded
      Returns:
      Returns whether xsi:type information will be encoded
    • isNullable

      boolean isNullable()
      Returns whether serializer allows null values
      Returns:
      Returns whether serializer allows null values
    • getEncodingStyle

      String getEncodingStyle()
      Returns the encodingStyle of this serializer
      Returns:
      Returns the encodingStyle of this serializer
    • getInnermostSerializer

      CombinedSerializer getInnermostSerializer()
      Returns the serializer that actually does the serialization
      Returns:
      Returns the serializer that actually does the serialization