- java.lang.Object
-
- javax.imageio.spi.IIOServiceProvider
-
- javax.imageio.spi.ImageTranscoderSpi
-
- All Implemented Interfaces:
RegisterableService
public abstract class ImageTranscoderSpi extends IIOServiceProvider
The service provider interface (SPI) forImageTranscoder
s. For more information on service provider classes, see the class comment for theIIORegistry
class.- See Also:
IIORegistry
,ImageTranscoder
-
-
Field Summary
-
Fields declared in class javax.imageio.spi.IIOServiceProvider
vendorName, version
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
ImageTranscoderSpi()
Constructs a blankImageTranscoderSpi
.ImageTranscoderSpi(String vendorName, String version)
Constructs anImageTranscoderSpi
with a given set of values.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract ImageTranscoder
createTranscoderInstance()
Returns an instance of theImageTranscoder
implementation associated with this service provider.abstract String
getReaderServiceProviderName()
Returns the fully qualified class name of anImageReaderSpi
class that generatesIIOMetadata
objects that may be used as input to this transcoder.abstract String
getWriterServiceProviderName()
Returns the fully qualified class name of anImageWriterSpi
class that generatesIIOMetadata
objects that may be used as input to this transcoder.-
Methods declared in class javax.imageio.spi.IIOServiceProvider
getDescription, getVendorName, getVersion, onDeregistration, onRegistration
-
-
-
-
Method Detail
-
getReaderServiceProviderName
public abstract String getReaderServiceProviderName()
Returns the fully qualified class name of anImageReaderSpi
class that generatesIIOMetadata
objects that may be used as input to this transcoder.- Returns:
- a
String
containing the fully-qualified class name of theImageReaderSpi
implementation class. - See Also:
ImageReaderSpi
-
getWriterServiceProviderName
public abstract String getWriterServiceProviderName()
Returns the fully qualified class name of anImageWriterSpi
class that generatesIIOMetadata
objects that may be used as input to this transcoder.- Returns:
- a
String
containing the fully-qualified class name of theImageWriterSpi
implementation class. - See Also:
ImageWriterSpi
-
createTranscoderInstance
public abstract ImageTranscoder createTranscoderInstance()
Returns an instance of theImageTranscoder
implementation associated with this service provider.- Returns:
- an
ImageTranscoder
instance.
-
-