public class ImageDataContentHandler extends Object implements DataContentHandler
| Constructor and Description |
|---|
ImageDataContentHandler() |
| Modifier and Type | Method and Description |
|---|---|
Object |
getContent(DataSource ds)
Return an object representing the data in its most preferred form.
|
Object |
getTransferData(DataFlavor df,
DataSource ds)
Returns an object which represents the data to be transferred.
|
DataFlavor[] |
getTransferDataFlavors()
Returns an array of DataFlavor objects indicating the flavors the
data can be provided in.
|
void |
writeTo(Object obj,
String mimeType,
OutputStream os)
Convert the object to a byte stream of the specified MIME type
and write it to the output stream.
|
public Object getContent(DataSource ds) throws IOException
DataContentHandlergetTransferDataFlavors method.getContent in interface DataContentHandlerds - The DataSource representing the data to be converted.IOException - if the data can't be accessedpublic Object getTransferData(DataFlavor df, DataSource ds) throws UnsupportedFlavorException, IOException
DataContentHandlergetTransferData in interface DataContentHandlerdf - The DataFlavor representing the requested type.ds - The DataSource representing the data to be converted.UnsupportedFlavorException - if the handler doesn't
support the requested flavorIOException - if the data can't be accessedpublic DataFlavor[] getTransferDataFlavors()
DataContentHandlergetTransferDataFlavors in interface DataContentHandlerpublic void writeTo(Object obj, String mimeType, OutputStream os) throws IOException
DataContentHandlerwriteTo in interface DataContentHandlerobj - The object to be converted.mimeType - The requested MIME type of the resulting byte stream.os - The output stream into which to write the converted
byte stream.IOException - errors writing to the streamCopyright © 2016 JBoss by Red Hat. All rights reserved.