Class ImageTranscoderSpi
java.lang.Object
javax.imageio.spi.IIOServiceProvider
javax.imageio.spi.ImageTranscoderSpi
- All Implemented Interfaces:
RegisterableService
The service provider interface (SPI) for
ImageTranscoder
s.
For more information on service provider classes, see the class comment
for the IIORegistry
class.- See Also:
-
Field Summary
Fields declared in class IIOServiceProvider
vendorName, version
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
Constructs a blankImageTranscoderSpi
.ImageTranscoderSpi
(String vendorName, String version) Constructs anImageTranscoderSpi
with a given set of values. -
Method Summary
Modifier and TypeMethodDescriptionabstract ImageTranscoder
Returns an instance of theImageTranscoder
implementation associated with this service provider.abstract String
Returns the fully qualified class name of anImageReaderSpi
class that generatesIIOMetadata
objects that may be used as input to this transcoder.abstract String
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 IIOServiceProvider
getDescription, getVendorName, getVersion, onDeregistration, onRegistration
Modifier and TypeMethodDescriptionabstract String
getDescription
(Locale locale) Returns a brief, human-readable description of this service provider and its associated implementation.Returns the name of the vendor responsible for creating this service provider and its associated implementation.Returns a string describing the version number of this service provider and its associated implementation.void
onDeregistration
(ServiceRegistry registry, Class<?> category) A callback that will be whenever the Spi class has been deregistered from aServiceRegistry
.void
onRegistration
(ServiceRegistry registry, Class<?> category) A callback that will be called exactly once after the Spi class has been instantiated and registered in aServiceRegistry
.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Modifier and TypeMethodDescriptionprotected Object
clone()
Creates and returns a copy of this object.boolean
Indicates whether some other object is "equal to" this one.protected void
finalize()
Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class
<?> getClass()
Returns the runtime class of thisObject
.int
hashCode()
Returns a hash code value for this object.final void
notify()
Wakes up a single thread that is waiting on this object's monitor.final void
Wakes up all threads that are waiting on this object's monitor.toString()
Returns a string representation of the object.final void
wait()
Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final void
wait
(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final void
wait
(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
ImageTranscoderSpi
protected ImageTranscoderSpi()Constructs a blankImageTranscoderSpi
. It is up to the subclass to initialize instance variables and/or override method implementations in order to provide working versions of all methods. -
ImageTranscoderSpi
-
-
Method Details
-
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:
-
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:
-
createTranscoderInstance
Returns an instance of theImageTranscoder
implementation associated with this service provider.- Returns:
- an
ImageTranscoder
instance.
-