T - the class of decoder that will be produced.public interface DecoderFactory<T>
ImageDecoder and ImageRegionDecoder factories.| Modifier and Type | Method and Description |
|---|---|
T |
make()
Produce a new instance of a decoder with type
T. |
T make() throws IllegalAccessException, InstantiationException, NoSuchMethodException, InvocationTargetException
T.IllegalAccessException - if the factory class cannot be instantiated.InstantiationException - if the factory class cannot be instantiated.NoSuchMethodException - if the factory class cannot be instantiated.InvocationTargetException - if the factory class cannot be instantiated.