Class ImageRawStream.ByteArrayStreamFactory
- java.lang.Object
-
- org.apache.xmlgraphics.image.loader.impl.ImageRawStream.ByteArrayStreamFactory
-
- All Implemented Interfaces:
ImageRawStream.InputStreamFactory
- Enclosing class:
- ImageRawStream
public static class ImageRawStream.ByteArrayStreamFactory extends java.lang.Object implements ImageRawStream.InputStreamFactory
InputStream factory that wraps a byte array.
-
-
Constructor Summary
Constructors Constructor Description ByteArrayStreamFactory(byte[] data)Main constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()Closes the factory and releases any resources held open during the lifetime of this object.java.io.InputStreamcreateInputStream()Creates and returns a new InputStream.booleanisUsedOnceOnly()Indicates whether this factory is only usable once or many times.
-
-
-
Method Detail
-
createInputStream
public java.io.InputStream createInputStream()
Creates and returns a new InputStream.- Specified by:
createInputStreamin interfaceImageRawStream.InputStreamFactory- Returns:
- the new InputStream
-
close
public void close()
Closes the factory and releases any resources held open during the lifetime of this object.- Specified by:
closein interfaceImageRawStream.InputStreamFactory
-
isUsedOnceOnly
public boolean isUsedOnceOnly()
Indicates whether this factory is only usable once or many times.- Specified by:
isUsedOnceOnlyin interfaceImageRawStream.InputStreamFactory- Returns:
- true if the factory can only be used once
-
-