Package com.sun.xml.rpc.encoding
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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getEncodeType()
Returns whether xsi:type information will be encodedString
getEncodingStyle()
Returns the encodingStyle of this serializerCombinedSerializer
getInnermostSerializer()
Returns the serializer that actually does the serializationQName
getXmlType()
Returns the XML schema type processed by this serializer.boolean
isNullable()
Returns whether serializer allows null values-
Methods inherited from interface com.sun.xml.rpc.encoding.JAXRPCDeserializer
deserialize, deserialize
-
Methods inherited from interface com.sun.xml.rpc.encoding.JAXRPCSerializer
serialize
-
-
-
-
Method Detail
-
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
-
-