javax.imageio.spi |
A package of the Java Image I/O API containing the plug-in interfaces
for readers, writers, transcoders, and streams, and a runtime
registry.
The javax.imageio.spi package contains service
provider interfaces for reading, writing, and transcoding images, and
obtaining input and output streams, as well as a run-time registry
that discovers installed service provider instances and allows new
instances to be registered dynamically.
@since 1.4
|
Java Source File Name | Type | Comment |
DigraphNode.java | Class | A node in a directed graph. |
IIORegistry.java | Class | A registry for service provider instances. |
IIOServiceProvider.java | Class | A superinterface for functionality common to all Image I/O service
provider interfaces (SPIs). |
ImageInputStreamSpi.java | Class | The service provider interface (SPI) for
ImageInputStream s. |
ImageOutputStreamSpi.java | Class | The service provider interface (SPI) for
ImageOutputStream s. |
ImageReaderSpi.java | Class | The service provider interface (SPI) for ImageReader s.
For more information on service provider classes, see the class comment
for the IIORegistry class.
Each ImageReaderSpi provides several types of information
about the ImageReader class with which it is associated.
The name of the vendor who defined the SPI class and a
brief description of the class are available via the
getVendorName , getDescription ,
and getVersion methods.
These methods may be internationalized to provide locale-specific
output. |
ImageReaderWriterSpi.java | Class | A superclass containing instance variables and methods common to
ImageReaderSpi and ImageWriterSpi . |
ImageTranscoderSpi.java | Class | The service provider interface (SPI) for ImageTranscoder s. |
ImageWriterSpi.java | Class | The service provider interface (SPI) for ImageWriter s.
For more information on service provider classes, see the class comment
for the IIORegistry class.
Each ImageWriterSpi provides several types of information
about the ImageWriter class with which it is associated.
The name of the vendor who defined the SPI class and a
brief description of the class are available via the
getVendorName , getDescription ,
and getVersion methods.
These methods may be internationalized to provide locale-specific
output. |
PartiallyOrderedSet.java | Class | A set of Object s with pairwise orderings between them.
The iterator method provides the elements in
topologically sorted order. |
RegisterableService.java | Interface | An optional interface that may be provided by service provider
objects that will be registered with a
ServiceRegistry . |
ServiceRegistry.java | Class | A registry for service provider instances.
A service is a well-known set of interfaces and (usually
abstract) classes. |