Interface SPISerializerProviderType
-
- All Known Implementing Classes:
FormatXMLSPISerializerProvider
@ProviderType public interface SPISerializerProviderTypeThe type of parser providers.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SPISerializerTypeserializerCreate(java.io.OutputStream output)FormatDescriptionserializerFormatSupported()java.util.SortedSet<FormatVersion>serializerFormatVersionsSupported()java.lang.StringserializerName()
-
-
-
Method Detail
-
serializerFormatSupported
FormatDescription serializerFormatSupported()
- Returns:
- The format that this provider supports
-
serializerFormatVersionsSupported
java.util.SortedSet<FormatVersion> serializerFormatVersionsSupported()
- Returns:
- The supported versions of the format
-
serializerName
java.lang.String serializerName()
- Returns:
- The name of this provider
-
serializerCreate
SPISerializerType serializerCreate(java.io.OutputStream output) throws java.io.IOException
- Parameters:
output- The output stream- Returns:
- A new serializer for the format
- Throws:
java.io.IOException- On I/O or serializer configuration errors
-
-