public class InputStreamHandle extends BaseHandle<InputStream,InputStream> implements BufferableHandle, ContentHandle<InputStream>, BinaryReadHandle, BinaryWriteHandle, GenericReadHandle, GenericWriteHandle, JSONReadHandle, JSONWriteHandle, TextReadHandle, TextWriteHandle, XMLReadHandle, XMLWriteHandle, StructureReadHandle, StructureWriteHandle
UNKNOWN_LENGTH| Constructor and Description |
|---|
InputStreamHandle()
Zero-argument constructor.
|
InputStreamHandle(InputStream content)
Initializes the handle with an input stream for the content.
|
| Modifier and Type | Method and Description |
|---|---|
void |
fromBuffer(byte[] buffer)
Sets the content of the handle by copying from a byte array buffer
encoded in UTF-8.
|
InputStream |
get()
Returns an input stream for a resource read from the database.
|
static ContentHandleFactory |
newFactory()
Creates a factory to create an InputStreamHandle instance for an input stream.
|
void |
set(InputStream content)
Assigns an input stream as the content.
|
byte[] |
toBuffer()
Copies the content of the handle to a byte array buffer
encoded in UTF-8.
|
String |
toString()
Buffers the input stream and returns the buffer as a string
with the assumption that the stream is encoded in UTF-8.
|
InputStreamHandle |
with(InputStream content)
Assigns an input stream as the content and returns the handle
as a fluent convenience.
|
InputStreamHandle |
withFormat(Format format)
Specifies the format of the content and returns the handle
as a fluent convenience.
|
InputStreamHandle |
withMimetype(String mimetype)
Specifies the mime type of the content and returns the handle
as a fluent convenience.
|
getByteLength, getFormat, getMimetype, setByteLength, setFormat, setMimetypepublic InputStreamHandle()
public InputStreamHandle(InputStream content)
content - an input streampublic static ContentHandleFactory newFactory()
public InputStream get()
get in interface ContentHandle<InputStream>public void set(InputStream content)
set in interface ContentHandle<InputStream>content - an input streampublic InputStreamHandle with(InputStream content)
content - an input streampublic InputStreamHandle withFormat(Format format)
format - the format of the contentpublic InputStreamHandle withMimetype(String mimetype)
mimetype - the mime type of the contentpublic void fromBuffer(byte[] buffer)
BufferableHandlefromBuffer in interface BufferableHandlebuffer - the byte arraypublic byte[] toBuffer()
BufferableHandletoBuffer in interface BufferableHandleCopyright © 2013-2015 MarkLogic Corporation.