API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.imageio.spi. ImageTranscoderSpi View Source
Author(s)
Since
Version
0.5
Serial
Hierarchy
 Object
      IIOServiceProvider
          ImageTranscoderSpi
Implements
Subclasses
Description
publicabstract abstract class ImageTranscoderSpi
  The service provider interface (SPI) for ImageTranscoders.
See also:    IIORegistry ImageTranscoder
Constructors
protected ImageTranscoderSpi ()
  Constructs a blank ImageTranscoderSpi.
public ImageTranscoderSpi (String vendorName, String version)
  Constructs an ImageTranscoderSpi with a given set of values.
Methods
Hide/Show inherited methods
publicabstract ImageTranscoder createTranscoderInstance ()
  Returns an instance of the ImageTranscoder implementation associated with this service provider.
publicabstract String getDescription (Locale locale) [Inherited From IIOServiceProvider]
  Returns a brief, human-readable description of this service provider and its associated implementation.
publicabstract String getReaderServiceProviderName ()
  Returns the fully qualified class name of an ImageReaderSpi class that generates IIOMetadata objects that may be used as input to this transcoder.
public String getVendorName () [Inherited From IIOServiceProvider]
  Returns the name of the vendor responsible for creating this service provider and its associated implementation.
public String getVersion () [Inherited From IIOServiceProvider]
  Returns a string describing the version number of this service provider and its associated implementation.
publicabstract String getWriterServiceProviderName ()
  Returns the fully qualified class name of an ImageWriterSpi class that generates IIOMetadata objects that may be used as input to this transcoder.
public void onDeregistration (ServiceRegistry registry, Class<Object> category) [Inherited From IIOServiceProvider]
  A callback that will be whenever the Spi class has been deregistered from a ServiceRegistry.
public void onRegistration (ServiceRegistry registry, Class<Object> category) [Inherited From IIOServiceProvider]
  A callback that will be called exactly once after the Spi class has been instantiated and registered in a ServiceRegistry.
Fields
Hide/Show inherited fields
protected String vendorName [Inherited From IIOServiceProvider]
  A String to be returned from getVendorName, initially null.
protected String version [Inherited From IIOServiceProvider]
  A String to be returned from getVersion, initially null.
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar