Skip navigation links
Oracle® Multimedia Java API Reference
12c Release 2 (12.2)

E86001-01
A B C D E F G H I L M O P R S T W 

A

applyWatermark(OrdImage, OrdImage, String[]) - Method in class oracle.ord.im.OrdImage
Deprecated.
Overlays a watermark image onto a source image and writes it to a destination image object.
applyWatermark(String, OrdImage, String[]) - Method in class oracle.ord.im.OrdImage
Deprecated.
Overlays a text watermark onto a source image and writes it to a destination image object.

B

BfileInputStream - Class in oracle.ord.media.jai.io
Deprecated.
The BfileInputStream class is a SeekableStream object that reads data from Oracle BFILEs. It is a subclass of com.sun.media.jai.codec.SeekableStream and java.io.InputStream; it implements the java.io.DataInput and oracle.ord.media.io.SeekableInputStream interfaces.

This class uses buffering while reading from a BFILE. The simple constructor (the one that takes just a BFILE) uses a default buffer size that should be sufficient for most streams; however, users can specify any buffer size using an alternate constructor.

Prerequisites

In order to to use the JAI stream objects, you will need to include the following import statements in your Java file:

 import java.sql.Blob;
 import oracle.sql.BFILE;

In order to use JAI with Oracle Multimedia JAI stream objects, you will also need to import classes from the oracle.ord.media.jai.io package into your Java file.

Before running the methods associated with the BfileInputStream object, the following operations must have already been performed:

  • The following import statements have been included:
         import javax.media.jai.JAI;
         import java.awt.image.RenderedImage;
         
    
  • A local BfileInputStream object named inStream has been created.
BfileInputStream(BFILE) - Constructor for class oracle.ord.media.jai.io.BfileInputStream
Deprecated.
Creates a BfileInputStream object that reads from the specified BFILE. The constructor uses the maximum chunk size defined for a BFILE. The BFILE will be opened after this constructor.
BfileInputStream(BFILE, int) - Constructor for class oracle.ord.media.jai.io.BfileInputStream
Deprecated.
Creates a BfileInputStream object that reads from the specified BFILE. The constructor uses the specified chunk size. The BFILE will be opened after this constructor executes.
BlobInputStream - Class in oracle.ord.media.jai.io
Deprecated.
The BlobInputStream class is a SeekableStream object that reads data from database Blobs. It is a subclass of com.sun.media.jai.codec.SeekableStream and java.io.InputStream; it implements the java.io.DataInput and oracle.ord.media.io.SeekableInputStream interfaces.

This class uses buffering while reading from a Blob. The simple constructor (the one that takes only a Blob or a BLOB) uses a default buffer size unless an optimal buffer size can be determined by the database. Users can also specify any buffer size using an alternate constructor.

Prerequisites

In order to to use the JAI stream objects, you will need to include the following import statements in your Java file:

 import java.sql.Blob;
 import oracle.sql.BFILE;

In order to use JAI with Oracle Multimedia JAI stream objects, you will also need to import classes from the oracle.ord.media.jai.io package into your Java file.

Before running the methods associated with the BlobInputStream object, the following operations must have already been performed:

  • The following import statements have been included:
         import javax.media.jai.JAI;
         import java.awt.image.RenderedImage;
         
    
  • A local BlobInputStream object named inStream has been created.
BlobInputStream(Blob) - Constructor for class oracle.ord.media.jai.io.BlobInputStream
Deprecated.
Creates a BlobInputStream object that reads from the specified Blob. The constructor uses a default buffer size of 64KB.
BlobInputStream(BLOB) - Constructor for class oracle.ord.media.jai.io.BlobInputStream
Deprecated.
Creates a BlobInputStream object that reads from the specified Blob.
BlobInputStream(Blob, int) - Constructor for class oracle.ord.media.jai.io.BlobInputStream
Deprecated.
Creates a BlobInputStream object that reads from the specified Blob. The constructor uses the specified buffer size.
BlobOutputStream - Class in oracle.ord.media.jai.io
Deprecated.
The BlobOutputStream class writes data to database Blobs. It is a subclass of oracle.ord.media.jai.io.SeekableOutputStream.

This class uses buffering while writing to an underlying Blob. The simple constructor (the one that takes only a Blob or BLOB ) uses a default buffer size unless an optimal size can be determined by the database. Users can also specify any buffer size using an alternate constructor.

Prerequisites

In order to to use the JAI stream objects, you will need to include the following import statements in your Java file:

 import java.sql.Blob;
 import oracle.sql.BFILE;

In order to use JAI with Oracle Multimedia JAI stream objects, you will also need to import classes from the oracle.ord.media.jai.io package into your Java file.

Before running the methods associated with the BlobOutputStream object, the following operations must have already been performed:

  • The following import statements have been included:
         import javax.media.jai.JAI;
         import java.awt.image.RenderedImage;
         
    
  • A local BlobOutputStream object named outStream has been created.
BlobOutputStream(Blob) - Constructor for class oracle.ord.media.jai.io.BlobOutputStream
Deprecated.
Creates a BlobOutputStream object that writes to the specified java.sql.Blob, using a default buffer size of 64KB. Blob is not trimed until new content is flushed to Blob.
BlobOutputStream(BLOB) - Constructor for class oracle.ord.media.jai.io.BlobOutputStream
Deprecated.
Creates a BlobOutputStream object that writes to the specified oracle.sql.BLOB. Blob is not trimed until new content is flushed to Blob.
BlobOutputStream(Blob, int) - Constructor for class oracle.ord.media.jai.io.BlobOutputStream
Deprecated.
Creates a BlobOutputStream object that writes to the specified Blob, using the given integer as the maximum buffer size. Blob is not trimed until new content is flushed to Blob.
ByteArraySeekableOutputStream - Class in oracle.ord.media.jai.io
Deprecated.
A SeekableOutputStream class that writes to a ByteArrayOutputStream object whose original contents will be overwritten.
ByteArraySeekableOutputStream(ByteArrayOutputStream) - Constructor for class oracle.ord.media.jai.io.ByteArraySeekableOutputStream
Deprecated.
Creates a ByteArraySeekableOutputStream object from a ByteArrayOutputStream object.

C

canSeekBackwards() - Method in class oracle.ord.media.jai.io.BfileInputStream
Deprecated.
Checks whether or not the stream can seek backward. Because the BfileInputStream object can seek backward, this method will always return true.
canSeekBackwards() - Method in class oracle.ord.media.jai.io.BlobInputStream
Deprecated.
Checks whether or not the stream can seek backward. Because the BlobInputStream object can seek backward, this method will always return true.
checkProperties(byte[][]) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Checks if the properties of the audio data are consistent with the attributes of the OrdAudio Java object.
checkProperties() - Method in class oracle.ord.im.OrdImage
Deprecated.
Checks if the properties of the image data are consistent with the attributes of the OrdImage Java object.
checkProperties(byte[][]) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Checks if the properties of the video data are consistent with the attributes of the OrdVideo Java object.
clearLocal() - Method in class oracle.ord.im.OrdAudio
Deprecated.
Clears the local attribute to indicate that the audio data is stored externally.
clearLocal() - Method in class oracle.ord.im.OrdDoc
Deprecated.
Clears the local attribute to indicate that the media data is stored externally.
clearLocal() - Method in class oracle.ord.im.OrdImage
Deprecated.
Clears the local attribute to indicate that the image data is stored externally.
clearLocal() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Clears the local attribute to indicate that the video data is stored externally.
close() - Method in class oracle.ord.im.OrdAudio
Deprecated.
Closes the ORDAudio object if it is not retrieved from a table.
close() - Method in class oracle.ord.im.OrdDoc
Deprecated.
Closes the ORDDoc object if it is not retrieved from a table.
close() - Method in class oracle.ord.im.OrdImage
Deprecated.
Closes the ORDImage object if it is not retrieved from a table.
close() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Closes the ORDVideo object if it is not retrieved from a table.
close() - Method in interface oracle.ord.media.io.SeekableInputStream
Deprecated.
Closes the input stream and releases any resources associated with this stream.
close() - Method in class oracle.ord.media.jai.io.BfileInputStream
Deprecated.
Closes the BfileInputStream object, releasing any resources being used. The BFILE automatically closes after the stream closes.
close() - Method in class oracle.ord.media.jai.io.BlobInputStream
Deprecated.
Closes the BlobInputStream object, releasing any resources being used.
close() - Method in class oracle.ord.media.jai.io.BlobOutputStream
Deprecated.
Closes the output stream and releases any resources associated with this stream. Before closing the stream, this method automatically calls the BlobOutputStream.flush() method to write any buffered bytes to the Blob.
close() - Method in class oracle.ord.media.jai.io.ByteArraySeekableOutputStream
Deprecated.
Closes this output stream and releases any resources associated with this stream. Before closing the stream, this method automatically calls the ByteArraySeekableOutputStream.flush() method to write any buffered bytes to the stream.
close() - Method in class oracle.ord.media.jai.io.FileSeekableInputStream
Deprecated.
Closes the input stream and releases any resources associated with this stream.
close() - Method in class oracle.ord.media.jai.io.FileSeekableOutputStream
Deprecated.
Closes the output stream and releases any resources associated with this stream. Before closing the stream, this method automatically calls the FileSeekableOutputStream.flush() method to write any buffered bytes to the stream.
close() - Method in class oracle.ord.media.jai.io.MemoryCacheSeekableOutputStream
Deprecated.
Closes this output stream and releases any resources associated with this stream. Before closing the stream, this method automatically calls the MemoryCacheSeekableOutputStream.flush() method to write any buffered bytes to the stream.
closeSource(byte[][]) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Closes a data source.
closeSource(byte[][]) - Method in class oracle.ord.im.OrdDoc
Deprecated.
Closes a data source.
closeSource(byte[][]) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Closes a data source.
computeBlobStreamBufferSize(int) - Static method in class oracle.ord.media.jai.io.BlobInputStream
Deprecated.
 
copy(OrdImage) - Method in class oracle.ord.im.OrdImage
Deprecated.
Copies an OrdImage Java object.
copyStruct(OrdImageBase) - Method in class oracle.ord.im.OrdImage
Deprecated.
Copies the _struct field of the specified object into this object's _struct field.

D

deleteContent() - Method in class oracle.ord.im.OrdAudio
Deprecated.
Deletes any data stored in the database BLOB specified by the localData attribute.
deleteContent() - Method in class oracle.ord.im.OrdDoc
Deprecated.
Deletes any data stored in the database BLOB specified by the localData attribute.
deleteContent() - Method in class oracle.ord.im.OrdImage
Deprecated.
Deletes any data stored in the database BLOB specified by the localData attribute.
deleteContent() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Deletes any data stored in the database BLOB specified by the localData attribute.

E

evaluateScore(OrdImageSignature, OrdImageSignature, String) - Static method in class oracle.ord.im.OrdImageSignature
Deprecated.
This method is no longer supported.
export(byte[][], String, String, String) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Exports the data from the BLOB specified by the localData attribute.
export(byte[][], String, String, String) - Method in class oracle.ord.im.OrdDoc
Deprecated.
Exports the data from the BLOB specified by the localData attribute.
export(byte[][], String, String, String) - Method in class oracle.ord.im.OrdImage
Deprecated.
Exports the data from the BLOB specified by the localData attribute.
export(byte[][], String, String, String) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Exports the data from the BLOB specified by the localData attribute.

F

FileSeekableInputStream - Class in oracle.ord.media.jai.io
Deprecated.
The FileSeekableInputStream implements the oracle.ord.media.io.SeekableInputStream interface to read data from a file. Forward and backward seeking are supported.
FileSeekableInputStream(File) - Constructor for class oracle.ord.media.jai.io.FileSeekableInputStream
Deprecated.
Creates a FileSeekableInputStream object that reads from a file.
FileSeekableInputStream(String) - Constructor for class oracle.ord.media.jai.io.FileSeekableInputStream
Deprecated.
Creates a FileSeekableInputStream object that reads from a named file.
FileSeekableOutputStream - Class in oracle.ord.media.jai.io
Deprecated.
A SeekableOutputStream class that writes to a file whose original contents will be overwritten.
FileSeekableOutputStream(File) - Constructor for class oracle.ord.media.jai.io.FileSeekableOutputStream
Deprecated.
Creates a FileSeekableOutputStream object that writes to a file.
FileSeekableOutputStream(String) - Constructor for class oracle.ord.media.jai.io.FileSeekableOutputStream
Deprecated.
Creates a FileSeekableOutputStream object that writes to a named file.
flush() - Method in class oracle.ord.media.jai.io.BlobOutputStream
Deprecated.
Flushes the output stream and forces any buffered output bytes to be written to the Blob.
flush() - Method in class oracle.ord.media.jai.io.ByteArraySeekableOutputStream
Deprecated.
Flushes the output stream and forces any buffered output bytes to be written to the stream.

There is little need to call this method until all the data has been written because the close method includes a call to the flush method.

flush() - Method in class oracle.ord.media.jai.io.FileSeekableOutputStream
Deprecated.
Flushes the output stream and forces any buffered output bytes to be written to the file.

There is little need to call this method until all the data has been written because the close method includes a call to the flush method.

flush() - Method in class oracle.ord.media.jai.io.MemoryCacheSeekableOutputStream
Deprecated.
Flushes the output stream and forces any buffered output bytes to be written to the stream. After flushing, attempting to seek or truncate to the flushed portion of the stream will result in an IOException error. The file pointer after the flushing operation equals the current stream length.

There is little need to call this method until all the data has been written because the close method includes a call to the flush method.

G

generateSignature(OrdImage) - Method in class oracle.ord.im.OrdImageSignature
Deprecated.
This method is no longer supported.
getAllAttributes(byte[][]) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Returns the values of the audio properties in a temporary CLOB in a form defined by the format plug-in.
getAllAttributes(byte[][]) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Returns the values of the video properties in a temporary CLOB in a form defined by the format plug-in.
getAttribute(byte[][], String) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Returns the value of the requested audio property.
getAttribute(byte[][], String) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Returns the value of the requested video property.
getAudioDuration() - Method in class oracle.ord.im.OrdAudio
Deprecated.
Returns the value of the audioDuration attribute.
getBFILE() - Method in class oracle.ord.im.OrdAudio
Deprecated.
Returns a BFILE locator from the database when the value of the srcType attribute is file.
getBFILE() - Method in class oracle.ord.im.OrdDoc
Deprecated.
Returns a BFILE locator from the database when the value of the srcType attribute is file.
getBFILE() - Method in class oracle.ord.im.OrdImage
Deprecated.
Returns a BFILE locator from the database when the value of the srcType attribute is file.
getBFILE() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Returns a BFILE locator from the database when the value of the srcType attribute is file.
getBFILE() - Method in class oracle.ord.media.jai.io.BfileInputStream
Deprecated.
Returns the BFILE associated with the BfileInputStream object.
getBitRate() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Returns the value of the bitRate attribute.
getBLOB() - Method in class oracle.ord.media.jai.io.BlobInputStream
Deprecated.
Returns the LOB associated with the BlobInputStream object cast to an oracle.sql.BLOB.
getBlob() - Method in class oracle.ord.media.jai.io.BlobInputStream
Deprecated.
Returns the LOB associated with the BlobInputStream object.
getBlobContent() - Method in class oracle.ord.im.OrdAudio
Deprecated.
Returns the BLOB locator from the localData attribute.
getBlobContent() - Method in class oracle.ord.im.OrdDoc
Deprecated.
Returns the BLOB locator from the localData attribute.
getBlobContent() - Method in class oracle.ord.im.OrdImage
Deprecated.
Returns the BLOB locator from the localData attribute.
getBlobContent() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Returns the BLOB locator from the localData attribute.
getClobComments() - Method in class oracle.ord.im.OrdAudio
Deprecated.
Returns the CLOB locator from the comments attribute.
getClobComments() - Method in class oracle.ord.im.OrdDoc
Deprecated.
Returns the CLOB locator from the comments attribute.
getClobComments() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Returns the CLOB locator from the comments attribute.
getComments() - Method in class oracle.ord.im.OrdAudio
Deprecated.
New applications should use the getClobComments method.
getComments() - Method in class oracle.ord.im.OrdDoc
Deprecated.
New applications should use the getClobComments method.
getComments() - Method in class oracle.ord.im.OrdVideo
Deprecated.
New applications should use the getClobComments method.
getCompressionFormat() - Method in class oracle.ord.im.OrdImage
Deprecated.
Returns the value of the compressionFormat attribute.
getCompressionType() - Method in class oracle.ord.im.OrdAudio
Deprecated.
Returns the value of the compressionType attribute.
getCompressionType() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Returns the value of the compressionType attribute.
getContent() - Method in class oracle.ord.im.OrdAudio
Deprecated.
New applications should use the getBlobContent method.
getContent() - Method in class oracle.ord.im.OrdDoc
Deprecated.
New applications should use the getBlobContent method.
getContent() - Method in class oracle.ord.im.OrdImage
Deprecated.
New applications should use the getBlobContent method.
getContent() - Method in class oracle.ord.im.OrdVideo
Deprecated.
New applications should use the getBlobContent method.
getContentFormat() - Method in class oracle.ord.im.OrdImage
Deprecated.
Returns the value of the contentFormat attribute.
getContentInLob(byte[][], String[], String[]) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Returns the data from the BLOB specified by the localData attribute in a temporary BLOB in the database.
getContentInLob(byte[][], String[], String[]) - Method in class oracle.ord.im.OrdDoc
Deprecated.
Returns the data from the BLOB specified by the localData attribute in a temporary BLOB in the database.
getContentInLob(byte[][], String[], String[]) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Returns the data from the BLOB specified by the localData attribute in a temporary BLOB in the database.
getContentLength() - Method in class oracle.ord.im.OrdAudio
Deprecated.
Returns the length of the audio data.
getContentLength(byte[][]) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Returns the length of the audio data using source plug-in context information.
getContentLength() - Method in class oracle.ord.im.OrdDoc
Deprecated.
Returns the value of the contentLength attribute.
getContentLength() - Method in class oracle.ord.im.OrdImage
Deprecated.
Returns the value of the contentLength attribute.
getContentLength() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Returns the length of the video data.
getContentLength(byte[][]) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Returns the length of the video data using source plug-in context information.
getDataInByteArray() - Method in class oracle.ord.im.OrdAudio
Deprecated.
Returns a byte array containing the data from the database BLOB specified by the localData attribute.
getDataInByteArray() - Method in class oracle.ord.im.OrdDoc
Deprecated.
Returns a byte array containing the data from the database BLOB specified by the localData attribute.
getDataInByteArray() - Method in class oracle.ord.im.OrdImage
Deprecated.
Returns a byte array containing the data from the database BLOB specified by the localData attribute.
getDataInByteArray(BLOB) - Static method in class oracle.ord.im.OrdMediaUtil
Deprecated.
Downloads data from a database object to a byte array.
getDataInByteArray() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Returns a byte array containing the data from the database BLOB specified by the localData attribute.
getDataInFile(String) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Writes the data from the database BLOB specified by the localData attribute to a local file.
getDataInFile(String) - Method in class oracle.ord.im.OrdDoc
Deprecated.
Writes the data from the database BLOB specified by the localData attribute to a local file.
getDataInFile(String) - Method in class oracle.ord.im.OrdImage
Deprecated.
Writes the data from the database BLOB specified by the localData attribute to a local file.
getDataInFile(String, BLOB) - Static method in class oracle.ord.im.OrdMediaUtil
Deprecated.
Downloads data from a database object to the specified file.
getDataInFile(String) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Writes the data from the database BLOB specified by the localData attribute to a local file.
getDataInStream() - Method in class oracle.ord.im.OrdAudio
Deprecated.
Returns an InputStream object from which the data in the database BLOB specified by the localData attribute can be read.
getDataInStream() - Method in class oracle.ord.im.OrdDoc
Deprecated.
Returns an InputStream object from which the data in the database BLOB specified by the localData attribute can be read.
getDataInStream() - Method in class oracle.ord.im.OrdImage
Deprecated.
Returns an InputStream object from which the data in the database BLOB specified by the localData attribute can be read.
getDataInStream() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Returns an InputStream object from which the data in the database BLOB specified by the localData attribute can be read.
getDBErrorMessage() - Method in class oracle.ord.media.jai.io.BfileInputStream
Deprecated.
Returns the database error message associated with the last error encountered.
getDBErrorMessage() - Method in class oracle.ord.media.jai.io.BlobInputStream
Deprecated.
Returns the database error message associated with the last error encountered.
getDBErrorMessage() - Method in class oracle.ord.media.jai.io.BlobOutputStream
Deprecated.
Returns the database error message associated with the last error encountered.
getDescription() - Method in class oracle.ord.im.OrdAudio
Deprecated.
Returns the value of the description attribute.
getDescription() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Returns the value of the description attribute.
getDicomMetadata(String) - Method in class oracle.ord.im.OrdImage
Deprecated.
New applications should use the methods in the OrdDicom class. This support is documented in Oracle Multimedia DICOM Java API Reference.
getEncoding() - Method in class oracle.ord.im.OrdAudio
Deprecated.
Returns the value of the encoding attribute.
getFilePointer() - Method in interface oracle.ord.media.io.SeekableInputStream
Deprecated.
Returns the current offset in this stream.
getFilePointer() - Method in class oracle.ord.media.jai.io.BfileInputStream
Deprecated.
Returns the offset from the beginning of the BFILE at which the next read operation will occur.
getFilePointer() - Method in class oracle.ord.media.jai.io.BlobInputStream
Deprecated.
Returns the offset from the beginning of the Blob at which the next read operation will occur.
getFilePointer() - Method in class oracle.ord.media.jai.io.BlobOutputStream
Deprecated.
Returns the offset from the beginning of the Blob at which the next write operation will occur.
getFilePointer() - Method in class oracle.ord.media.jai.io.ByteArraySeekableOutputStream
Deprecated.
Returns the offset in the stream.
getFilePointer() - Method in class oracle.ord.media.jai.io.FileSeekableInputStream
Deprecated.
Returns the current offset in this stream.
getFilePointer() - Method in class oracle.ord.media.jai.io.FileSeekableOutputStream
Deprecated.
Returns the offset in the stream.
getFilePointer() - Method in class oracle.ord.media.jai.io.MemoryCacheSeekableOutputStream
Deprecated.
Returns the offset in the stream.
getFilePointer() - Method in class oracle.ord.media.jai.io.SeekableOutputStream
Deprecated.
Returns the offset in the stream.
getFlushedPointer() - Method in class oracle.ord.media.jai.io.MemoryCacheSeekableOutputStream
Deprecated.
Returns the position in the output stream after the last call to the flush method. Because all data previous to this point in the output stream has been written to the underlying output stream, you cannot seek backward farther than this position.
getFormat() - Method in class oracle.ord.im.OrdAudio
Deprecated.
Returns the value of the format attribute.
getFormat() - Method in class oracle.ord.im.OrdDoc
Deprecated.
Returns the value of the format attribute.
getFormat() - Method in class oracle.ord.im.OrdImage
Deprecated.
Returns the value of the fileFormat attribute.
getFormat() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Returns the value of the format attribute.
getFrameRate() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Returns the value of the frameRate attribute.
getFrameResolution() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Returns the value of the frameResolution attribute.
getHeight() - Method in class oracle.ord.im.OrdImage
Deprecated.
Returns the value of the height attribute.
getHeight() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Returns the value of the height attribute.
getMetadata(String) - Method in class oracle.ord.im.OrdImage
Deprecated.
Extracts metadata information from the image as specified by the metadataType parameter.
getMimeType() - Method in class oracle.ord.im.OrdAudio
Deprecated.
Returns the value of the mimeType attribute.
getMimeType() - Method in class oracle.ord.im.OrdDoc
Deprecated.
Returns the value of the mimeType attribute.
getMimeType() - Method in class oracle.ord.im.OrdImage
Deprecated.
Returns the value of the mimeType attribute.
getMimeType() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Returns the value of the mimeType attribute.
getNumberOfChannels() - Method in class oracle.ord.im.OrdAudio
Deprecated.
Returns the value of the numberOfChannels attribute.
getNumberOfColors() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Returns the value of the numberOfColors attribute.
getNumberOfFrames() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Returns the value of the numberOfFrames attribute.
getORADataFactory() - Static method in class oracle.ord.im.OrdAudio
Deprecated.
Returns the OrdAudio ORADataFactory interface for use by the getORAData method.
getORADataFactory() - Static method in class oracle.ord.im.OrdDoc
Deprecated.
Returns the OrdDoc ORADataFactory interface for use by the getORAData method.
getORADataFactory() - Static method in class oracle.ord.im.OrdImage
Deprecated.
Returns the OrdImage ORADataFactory interface for use by the getORAData method.
getORADataFactory() - Static method in class oracle.ord.im.OrdImageSignature
Deprecated.
This method is no longer supported.
getORADataFactory() - Static method in class oracle.ord.im.OrdVideo
Deprecated.
Returns the OrdVideo ORADataFactory interface for use by the getORAData method.
getSampleSize() - Method in class oracle.ord.im.OrdAudio
Deprecated.
Returns the value of the sampleSize attribute.
getSamplingRate() - Method in class oracle.ord.im.OrdAudio
Deprecated.
Returns the value of the samplingRate attribute.
getSource() - Method in class oracle.ord.im.OrdAudio
Deprecated.
Returns the source information in the form srcType://srcLocation/srcName.
getSource() - Method in class oracle.ord.im.OrdDoc
Deprecated.
Returns the source information in the form srcType://srcLocation/srcName.
getSource() - Method in class oracle.ord.im.OrdImage
Deprecated.
Returns the source information in the form srcType://srcLocation/srcName.
getSource() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Returns the source information in the form srcType://srcLocation/srcName.
getSourceLocation() - Method in class oracle.ord.im.OrdAudio
Deprecated.
Returns the value of the srcLocation attribute.
getSourceLocation() - Method in class oracle.ord.im.OrdDoc
Deprecated.
Returns the value of the srcLocation attribute.
getSourceLocation() - Method in class oracle.ord.im.OrdImage
Deprecated.
Returns the value of the srcLocation attribute.
getSourceLocation() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Returns the value of the srcLocation attribute.
getSourceName() - Method in class oracle.ord.im.OrdAudio
Deprecated.
Returns the value of the srcName attribute.
getSourceName() - Method in class oracle.ord.im.OrdDoc
Deprecated.
Returns the value of the srcName attribute.
getSourceName() - Method in class oracle.ord.im.OrdImage
Deprecated.
Returns the value of the srcName attribute.
getSourceName() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Returns the value of the srcName attribute.
getSourceType() - Method in class oracle.ord.im.OrdAudio
Deprecated.
Returns the value of the srcType attribute.
getSourceType() - Method in class oracle.ord.im.OrdDoc
Deprecated.
Returns the value of the srcType attribute.
getSourceType() - Method in class oracle.ord.im.OrdImage
Deprecated.
Returns the value of the srcType attribute.
getSourceType() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Returns the value of the srcType attribute.
getUpdateTime() - Method in class oracle.ord.im.OrdAudio
Deprecated.
Returns the value of the updateTime attribute.
getUpdateTime() - Method in class oracle.ord.im.OrdDoc
Deprecated.
Returns the value of the updateTime attribute.
getUpdateTime() - Method in class oracle.ord.im.OrdImage
Deprecated.
Returns the value of the updateTime attribute.
getUpdateTime() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Returns the value of the updateTime attribute.
getVideoDuration() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Returns the value of the videoDuration attribute.
getWidth() - Method in class oracle.ord.im.OrdImage
Deprecated.
Returns the value of the width attribute.
getWidth() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Returns the value of the width attribute.

H

hasDBErrorMessage() - Method in class oracle.ord.media.jai.io.BfileInputStream
Deprecated.
Checks whether or not a database error message has been set.
hasDBErrorMessage() - Method in class oracle.ord.media.jai.io.BlobInputStream
Deprecated.
Checks whether or not a database error message has been set.
hasDBErrorMessage() - Method in class oracle.ord.media.jai.io.BlobOutputStream
Deprecated.
Checks whether or not a database error message has been set.

I

imCompatibilityInit(OracleConnection) - Static method in class oracle.ord.im.OrdMediaUtil
Deprecated.
This method is no longer needed.
imCompatibilityInit(OracleConnection) - Static method in class oracle.ord.im.OrdMediaUtil
Deprecated.
This method is no longer needed.
importData(byte[][]) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Imports data from an external source into the database BLOB specified by the localData attribute.
importData(byte[][], boolean) - Method in class oracle.ord.im.OrdDoc
Deprecated.
Imports data from an external source into the database BLOB specified by the localData attribute, and optionally calls the setProperties method.
importData(byte[][]) - Method in class oracle.ord.im.OrdImage
Deprecated.
Imports data from an external source into the database BLOB specified by the localData attribute.
importData(byte[][]) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Imports data from an external source into the database BLOB specified by the localData attribute.
importFrom(byte[][], String, String, String) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Imports data from an external source into the database BLOB specified by the localData attribute.
importFrom(byte[][], String, String, String, boolean) - Method in class oracle.ord.im.OrdDoc
Deprecated.
Imports data from an external source into the database BLOB specified by the localData attribute, and optionally calls the setProperties method.
importFrom(byte[][], String, String, String) - Method in class oracle.ord.im.OrdImage
Deprecated.
Imports data from an external source into the database BLOB specified by the localData attribute.
importFrom(byte[][], String, String, String) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Imports data from an external source into the database BLOB specified by the localData attribute.
isConnectionNull() - Method in class oracle.ord.im.OrdAudio
Deprecated.
Returns whether the underlying database connection is null.
isConnectionNull() - Method in class oracle.ord.im.OrdDoc
Deprecated.
Returns whether the underlying database connection is null.
isConnectionNull() - Method in class oracle.ord.im.OrdImage
Deprecated.
Returns whether the underlying database connection is null.
isConnectionNull() - Method in class oracle.ord.im.OrdImageSignature
Deprecated.
This method is no longer supported.
isConnectionNull() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Returns whether the underlying database connection is null.
isLocal() - Method in class oracle.ord.im.OrdAudio
Deprecated.
Indicates if the audio data is stored locally in the database in a BLOB specified by the localData attribute.
isLocal() - Method in class oracle.ord.im.OrdDoc
Deprecated.
Indicates if the media data is stored locally in the database in a BLOB specified by the localData attribute.
isLocal() - Method in class oracle.ord.im.OrdImage
Deprecated.
Indicates if the image data is stored locally in the database in a BLOB specified by the localData attribute.
isLocal() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Indicates if the video data is stored locally in the database in a BLOB specified by the localData attribute.
isSimilar(OrdImageSignature, OrdImageSignature, String, float) - Static method in class oracle.ord.im.OrdImageSignature
Deprecated.
This method is no longer supported.

L

length() - Method in class oracle.ord.media.jai.io.BlobOutputStream
Deprecated.
Returns the current length of the output stream.
length() - Method in class oracle.ord.media.jai.io.ByteArraySeekableOutputStream
Deprecated.
Returns the current length of the stream.
length() - Method in class oracle.ord.media.jai.io.FileSeekableOutputStream
Deprecated.
Returns the current length of the stream.
length() - Method in class oracle.ord.media.jai.io.MemoryCacheSeekableOutputStream
Deprecated.
Returns the current length of the stream.
length() - Method in class oracle.ord.media.jai.io.SeekableOutputStream
Deprecated.
Returns the current length of the stream.
loadData(String, BLOB) - Static method in class oracle.ord.im.OrdMediaUtil
Deprecated.
Loads data from the specified file to a BLOB.
loadDataFromByteArray(byte[]) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Loads data from a byte array into the database BLOB specified by the localData attribute.
loadDataFromByteArray(byte[]) - Method in class oracle.ord.im.OrdDoc
Deprecated.
Loads data from a byte array into the database BLOB specified by the localData attribute.
loadDataFromByteArray(byte[]) - Method in class oracle.ord.im.OrdImage
Deprecated.
Loads data from a byte array into the database BLOB specified by the localData attribute.
loadDataFromByteArray(byte[], BLOB) - Static method in class oracle.ord.im.OrdMediaUtil
Deprecated.
Loads data from a byte array to a BLOB.
loadDataFromByteArray(byte[]) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Loads data from a byte array into the database BLOB specified by the localData attribute.
loadDataFromFile(String) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Loads data from a file into the database BLOB specified by the localData attribute.
loadDataFromFile(String) - Method in class oracle.ord.im.OrdDoc
Deprecated.
Loads data from a file into the database BLOB specified by the localData attribute.
loadDataFromFile(String) - Method in class oracle.ord.im.OrdImage
Deprecated.
Loads data from a file into the database BLOB specified by the localData attribute.
loadDataFromFile(String) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Loads data from a file into the database BLOB specified by the localData attribute.
loadDataFromInputStream(InputStream) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Loads data from an InputStream object into the database BLOB specified by the localData attribute.
loadDataFromInputStream(InputStream) - Method in class oracle.ord.im.OrdDoc
Deprecated.
Loads data from an InputStream object into the database BLOB specified by the localData attribute.
loadDataFromInputStream(InputStream) - Method in class oracle.ord.im.OrdImage
Deprecated.
Loads data from an InputStream object into the database BLOB specified by the localData attribute.
loadDataFromInputStream(InputStream, BLOB) - Static method in class oracle.ord.im.OrdMediaUtil
Deprecated.
Loads data from an InputStream object to a BLOB.
loadDataFromInputStream(InputStream) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Loads data from an InputStream object into the database BLOB specified by the localData attribute.

M

mark(int) - Method in class oracle.ord.media.jai.io.BfileInputStream
Deprecated.
Marks the current position in the BfileInputStream object. A call to the BfileInputStream.reset() method will return you to the last marked position in the BfileInputStream object.
mark(int) - Method in class oracle.ord.media.jai.io.BlobInputStream
Deprecated.
Marks the current position in the BlobInputStream object. A call to the BlobInputStream.reset() method will return you to the last marked position in the BlobInputStream object.
markSupported() - Method in class oracle.ord.media.jai.io.BfileInputStream
Deprecated.
Checks whether or not the BfileInputStream object supports marking. Because the BfileInputStream object supports marking, this method will always return true.
markSupported() - Method in class oracle.ord.media.jai.io.BlobInputStream
Deprecated.
Checks whether or not the BlobInputStream object supports marking. Because the BlobInputStream object supports marking, this method will always return true.
MemoryCacheSeekableOutputStream - Class in oracle.ord.media.jai.io
Deprecated.
A SeekableOutputStream class that writes to a generic output stream.
MemoryCacheSeekableOutputStream(OutputStream) - Constructor for class oracle.ord.media.jai.io.MemoryCacheSeekableOutputStream
Deprecated.
Creates a MemoryCacheSeekableOutputStream object from an OutputStream object.

O

openSource(byte[], byte[][]) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Opens a data source.
openSource(byte[], byte[][]) - Method in class oracle.ord.im.OrdDoc
Deprecated.
Opens a data source.
openSource(byte[], byte[][]) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Opens a data source.
oracle.ord.im - package oracle.ord.im
 
oracle.ord.media.io - package oracle.ord.media.io
 
oracle.ord.media.jai.io - package oracle.ord.media.jai.io
 
OrdAudio - Class in oracle.ord.im
Deprecated.
The OrdAudio class is used to represent an instance of the ORDSYS.ORDAudio database type in a Java application. The OrdAudio class includes a set of methods to get and set various object attributes, as well as a set of methods to perform various operations on an OrdAudio Java object.

Users of this class should be familiar with Oracle Multimedia Reference.

Almost all methods operate on the attributes of the OrdAudio Java object in the application. The exceptions are those methods that access the audio data for read or write purposes, which are described in the following list:

  • Methods that operate on the database BLOB specified by the localData attribute, read and write data stored in the database BLOB.
  • Methods that operate on the database BFILE specified by the srcLocation and srcName attributes when the value of the srcType attribute is file, read data from the specified file.
  • Methods that operate on the URL specified by the srcType, srcLocation, and srcName attributes when the value of the srcType attribute is http, read data from the resource at the specified URL.
If your application modifies the OrdAudio Java object, or the audio data in the database, you must update the ORDAudio SQL object in the database to make those changes permanent.

Some methods in the OrdAudio Java class are handed off to a database source plug-in or database format plug-in for processing; these methods have  byte [] ctx []  as a context parameter. Applications should allocate a 64-byte array to hold any context information that may be required by a source plug-in or a format plug-in. For example, a plug-in may initialize the context information in one call and use that information in a subsequent call. The source plug-in context requires one array; the format plug-in context requires another array. For most plug-ins, 64 bytes should be sufficient. Some user-defined plug-ins may need additional space. The following example shows how to allocate a plug-in context information array:

    byte [] ctx [] = new byte[1][64];

Note
  • In the current release, no Oracle-supplied source plug-ins or format plug-ins maintain context. Also, not all user-written source plug-ins or format plug-ins maintain context. However, if you include the context parameter as described, your application should work with any current or future source plug-ins or format plug-ins.

See Oracle Multimedia Reference for more information about plug-ins.

Prerequisites

In order to run OrdAudio methods, you will need to include the following import statements in your Java file:

 import oracle.ord.im.OrdMediaUtil;
 import oracle.ord.im.OrdAudio; 

You may also need to import classes from the following Java packages:

 java.io.
 java.sql. 
 oracle.jdbc.

Before running OrdAudio methods, the following operations must have already been performed:

  • A connection has been made to a table that contains a column of type OrdAudio.
  • A local OrdAudio object has been created and populated with data.

For examples of making a connection and populating a local object, see Oracle Multimedia User's Guide.

OrdAudio() - Constructor for class oracle.ord.im.OrdAudio
Deprecated. 
OrdDoc - Class in oracle.ord.im
Deprecated.
The OrdDoc class is used to represent an instance of the ORDSYS.ORDDoc database type in a Java application. The OrdDoc class includes a set of methods to get and set various object attributes, as well as a set of methods to perform various operations on an OrdDoc Java object.

Users of this class should be familiar with Oracle Multimedia Reference.

Almost all methods operate on the attributes of the OrdDoc Java object in the application. The exceptions are those methods that access the media data for read or write purposes, which are described in the following list:

  • Methods that operate on the database BLOB specified by the localData attribute, read and write data stored in the database BLOB.
  • Methods that operate on the database BFILE specified by the srcLocation and srcName attributes when the value of the srcType attribute is file, read data from the specified file.
  • Methods that operate on the URL specified by the srcType, srcLocation, and srcName attributes when the value of the srcType attribute is http, read data from the resource at the specified URL.
If your application modifies the OrdDoc Java object, or the media data in the database, you must update the ORDDoc SQL object in the database to make those changes permanent.

Some methods in the OrdAudio Java class are handed off to a database source plug-in or database format plug-in for processing; these methods have  byte [] ctx []  as a context parameter. Applications should allocate a 64-byte array to hold any context information that may be required by a source plug-in or a format plug-in. For example, a plug-in may initialize the context information in one call and use that information in a subsequent call. The source plug-in context requires one array; the format plug-in context requires another array. For most plug-ins, 64 bytes should be sufficient. Some user-defined plug-ins may need additional space. The following example illustrates how to allocate a plug-in context information array:

    byte [] ctx [] = new byte[1][64];

Note
  • In the current release, no Oracle-supplied source plug-ins or format plug-ins maintain context. Also, not all user-written source plug-ins or format plug-ins maintain context. However, if you include the context parameter as described, your application should work with any current or future source plug-ins or format plug-ins.

See Oracle Multimedia Reference for more information about plug-ins.

Prerequisites

In order to run OrdDoc methods, you will need to include the following import statements in your Java file:

 import oracle.ord.im.OrdMediaUtil;
 import oracle.ord.im.OrdDoc;

You may also need to import classes from the following Java packages:

 java.io.
 java.sql.
 oracle.jdbc.

Before running OrdDoc methods, the following operations must have already been performed:

  • A connection has been made to a table that contains a column of type OrdDoc.
  • A local OrdDoc object has been created and populated with data.

For examples of making a connection and populating a local object, see Oracle Multimedia User's Guide.

OrdDoc() - Constructor for class oracle.ord.im.OrdDoc
Deprecated. 
OrdImage - Class in oracle.ord.im
Deprecated.
The OrdImage class is used to represent an instance of the ORDSYS.ORDImage database type in a Java application. The OrdImage class includes a set of methods to get and set various object attributes, as well as a set of methods to perform various operations on an OrdImage Java object.

Users of this class should be familiar with Oracle Multimedia Reference.

Almost all methods operate on the attributes of the OrdImage Java object in the application. The exceptions are those methods that access the image data for read or write purposes, which are described in the following list:

  • Methods that operate on the database BLOB specified by the localData attribute, read and write data stored in the database BLOB.
  • Methods that operate on the database BFILE specified by the srcLocation and srcName attributes when the value of the srcType attribute is file, read data from the specified file.
  • Methods that operate on the URL specified by the srcType, srcLocation, and srcName attributes when the value of the srcType attribute is http, read data from the resource at the specified URL.
If your application modifies the OrdImage Java object, or the image data in the database, you must update the ORDImage SQL object in the database to make those changes permanent.

Some methods in the OrdImage Java class are handed off to a database source plug-in for processing; these methods have  byte [] ctx []  as a context parameter. Applications should allocate a 64-byte array to hold any context information that may be required by a source plug-in. For example, a plug-in may initialize the context information in one call and use that information in a subsequent call. For most plug-ins, 64 bytes should be sufficient. Some user-defined plug-ins may need additional space. The following example shows how to allocate a plug-in context information array:

    byte [] ctx [] = new byte[1][64];

Note
  • In the current release, no Oracle-supplied source plug-ins maintain context. Also, not all user-written source plug-ins maintain context. However, if you include the context parameter as described, your application should work with any current or future source plug-ins.

See Oracle Multimedia Reference for more information about plug-ins.

Prerequisites

In order to run OrdImage methods, you will need to include the following import statements in your Java file:

 import oracle.ord.im.OrdMediaUtil;
 import oracle.ord.im.OrdImage; 

You may also need to import classes from the following Java packages:

 java.io.
 java.sql. 
 oracle.jdbc.

Before running OrdImage methods, the following operations must have already been performed:

  • A connection has been made to a table that contains a column of type OrdImage.
  • A local OrdImage object has been created and populated with data.

For examples of making a connection and populating a local object, see Oracle Multimedia User's Guide.

OrdImage() - Constructor for class oracle.ord.im.OrdImage
Deprecated. 
OrdImageSignature - Class in oracle.ord.im
Deprecated.
This class is no longer supported.
OrdImageSignature() - Constructor for class oracle.ord.im.OrdImageSignature
Deprecated. 
OrdMediaUtil - Class in oracle.ord.im
Deprecated.
The OrdMediaUtil class allows other Oracle Multimedia Java classes to connect to Oracle Database and access data in tables that contain columns of Oracle Multimedia object types. This class includes methods for downloading and uploading data.

Users of this class should be familiar with Oracle Multimedia Reference.

Prerequisites

Before running OrdMediaUtil methods, the following operations must have already been performed:

  • A connection has been made to a table that contains columns of the appropriate Oracle Multimedia object types (OrdAudio, OrdDoc, OrdImage, OrdVideo, and so on).
  • Local Oracle Multimedia objects have been created and populated with data.

For examples of making a connection and populating a local object, see Oracle Multimedia User's Guide.

OrdVideo - Class in oracle.ord.im
Deprecated.
The OrdVideo class is used to represent an instance of the ORDSYS.ORDVideo database type in a Java application. The OrdVideo class includes a set of methods to get and set various object attributes, as well as a set of methods to perform various operations on an OrdVideo Java object.

Users of this class should be familiar with Oracle Multimedia Reference.

Almost all methods operate on the attributes of the OrdVideo Java object in the application. The exceptions are those methods that access the video data for read or write purposes, which are described in the following list:

  • Methods that operate on the database BLOB specified by the localData attribute, read and write data stored in the database BLOB.
  • Methods that operate on the database BFILE specified by the srcLocation and srcName attributes when the srcType attribute is file, read data from the specified file.
  • Methods that operate on the URL specified by the srcType, srcLocation, and srcName attributes when the srcType attribute is http, read data from the resource at the specified URL.
If your application modifies the OrdVideo Java object, or the video data in the database, you must update the ORDVideo SQL object in the database to make those changes permanent.

Some methods in the OrdVideo Java class are handed off to a database source plug-in or database format plug-in for processing; these methods have  byte [] ctx []  as a context parameter. Applications should allocate a 64-byte array to hold any context information that may be required by a source plug-in or a format plug-in. For example, a plug-in may initialize the context information in one call and use that information in a subsequent call. The source plug-in context requires one array; the format plug-in context requires another array. For most plug-ins, 64 bytes should be sufficient. Some user-defined plug-ins may need additional space. The following example shows how to allocate a plug-in context information array:

    byte [] ctx [] = new byte[1][64];

Note
  • In the current release, no Oracle-supplied source plug-ins or format plug-ins maintain context. Also, not all user-written source plug-ins or format plug-ins maintain context. However, if you include the context parameter as described, your application should work with any current or future source plug-ins or format plug-ins.

See Oracle Multimedia Reference for more information about plug-ins.

Prerequisites

In order to run OrdVideo methods, you will need to include the following import statements in your Java file:

 import oracle.ord.im.OrdMediaUtil;
 import oracle.ord.im.OrdVideo; 

You may also need to import classes from the following Java packages:

 java.io.
 java.sql. 
 oracle.jdbc.

Before running OrdVideo methods, the following operations must have already been performed:

  • A connection has been made to a table that contains a column of type OrdVideo.
  • A local OrdVideo object has been created and populated with data.

For examples of making a connection and populating a local object, see Oracle Multimedia User's Guide.

OrdVideo() - Constructor for class oracle.ord.im.OrdVideo
Deprecated. 

P

process(String) - Method in class oracle.ord.im.OrdImage
Deprecated.
Performs one or more image processing operations on the image data in the database BLOB specified by the localData attribute.
processAudioCommand(byte[][], String, String, byte[][]) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Calls the format plug-in in the database to execute a command.
processCopy(String, OrdImage) - Method in class oracle.ord.im.OrdImage
Deprecated.
Copies the image data to the destination object and performs one or more image processing operations on the image data.
processSourceCommand(byte[][], String, String, byte[][]) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Calls the source plug-in in the database to execute a command.
processSourceCommand(byte[][], String, String, byte[][]) - Method in class oracle.ord.im.OrdDoc
Deprecated.
Calls the source plug-in in the database to execute a command.
processSourceCommand(byte[][], String, String, byte[][]) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Calls the source plug-in in the database to execute a command.
processVideoCommand(byte[][], String, String, byte[][]) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Calls the format plug-in in the database to execute a command.
putMetadata(XMLType, String, String) - Method in class oracle.ord.im.OrdImage
Deprecated.
Embeds the metadata contained in the XML document into the image.

R

read() - Method in interface oracle.ord.media.io.SeekableInputStream
Deprecated.
Reads a single byte from the stream.
read(byte[], int, int) - Method in interface oracle.ord.media.io.SeekableInputStream
Deprecated.
Reads up to the specified number of bytes from the stream into the specified byte array starting at the starting position for the offset.
read(byte[]) - Method in interface oracle.ord.media.io.SeekableInputStream
Deprecated.
Reads up to the specified number of bytes from the stream into the specified byte array of specified length. If there are fewer than the specified number of bytes in the stream, the actual number of bytes in the stream is read.
read() - Method in class oracle.ord.media.jai.io.BfileInputStream
Deprecated.
Reads a single byte from the BFILE associated with the BfileInputStream object.
read(byte[]) - Method in class oracle.ord.media.jai.io.BfileInputStream
Deprecated.
Reads data from the BFILE into the specified buffer.
read(byte[], int, int) - Method in class oracle.ord.media.jai.io.BfileInputStream
Deprecated.
Reads up to the specified length of bytes of data from the BFILE into the specified buffer, starting from the specified offset.
read() - Method in class oracle.ord.media.jai.io.BlobInputStream
Deprecated.
Reads a single byte from the Blob associated with the BlobInputStream object. The value returned is between 0 and 255.
read(byte[]) - Method in class oracle.ord.media.jai.io.BlobInputStream
Deprecated.
Reads data from the Blob into the specified buffer.
read(byte[], int, int) - Method in class oracle.ord.media.jai.io.BlobInputStream
Deprecated.
Reads up to the specified length of bytes of data from the Blob into the specified buffer, starting from the specified offset.
read() - Method in class oracle.ord.media.jai.io.FileSeekableInputStream
Deprecated.
Reads a single byte from the stream.
read(byte[], int, int) - Method in class oracle.ord.media.jai.io.FileSeekableInputStream
Deprecated.
Reads up to the specified number of bytes from the stream into the specified byte array starting at the starting position for the offset.
read(byte[]) - Method in class oracle.ord.media.jai.io.FileSeekableInputStream
Deprecated.
Reads data from the stream into the specified byte array, up to the length of the specified byte array. If the stream has fewer bytes than the length of the specified byte array, this method reads the actual number of bytes in the stream.
readFromSource(byte[][], int, int, byte[][]) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Reads data from the data source.
readFromSource(byte[][], int, int, byte[][]) - Method in class oracle.ord.im.OrdDoc
Deprecated.
Reads data from the data source.
readFromSource(byte[][], int, int, byte[][]) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Reads data from the data source.
remaining() - Method in class oracle.ord.media.jai.io.BfileInputStream
Deprecated.
Returns the number of unread bytes remaining in the BFILE.
remaining() - Method in class oracle.ord.media.jai.io.BlobInputStream
Deprecated.
Returns the number of unread bytes remaining in the Blob.
reset() - Method in class oracle.ord.media.jai.io.BfileInputStream
Deprecated.
Repositions the stream to the position of the last valid mark.
reset() - Method in class oracle.ord.media.jai.io.BlobInputStream
Deprecated.
Repositions the stream to the position of the last valid mark.

S

seek(long) - Method in interface oracle.ord.media.io.SeekableInputStream
Deprecated.
Sets the file-pointer offset, measured from the beginning of the stream, at which the next read will occur. The offset may be set beyond the end of the stream.
seek(long) - Method in class oracle.ord.media.jai.io.BfileInputStream
Deprecated.
Sets the offset from the beginning of the BFILE at which the next read operation will occur.
seek(long) - Method in class oracle.ord.media.jai.io.BlobInputStream
Deprecated.
Sets the offset from the beginning of the Blob, at which the next read operation will occur.
seek(long) - Method in class oracle.ord.media.jai.io.BlobOutputStream
Deprecated.
Sets the file-pointer offset, measured from the beginning of this stream, at which the next write operation will occur.

The offset may be set beyond the end of the stream. Setting the offset beyond the end of the stream does not change the stream length; the stream length will change only by writing after the offset has been set beyond the end of the stream.

seek(long) - Method in class oracle.ord.media.jai.io.ByteArraySeekableOutputStream
Deprecated.
Sets the file-pointer offset, measured from the beginning of this stream, at which the next write operation will occur.

The offset may be set beyond the end of the stream. Setting the offset beyond the end of the stream does not change the stream length; the stream length will change only by writing after the offset has been set beyond the end of the stream.

In Java, a byte array cannot be longer than 2 gigabytes, therefore the value of the pos parameter cannot be larger than 2^31-1.

seek(long) - Method in class oracle.ord.media.jai.io.FileSeekableInputStream
Deprecated.
Sets the file-pointer offset, measured from the beginning of the stream, at which the next read operation will occur. The offset may be set beyond the end of the stream. Setting the offset beyond the end of the stream does not change the stream length; the stream length will change only by writing after the offset has been set beyond the end of the stream.
seek(long) - Method in class oracle.ord.media.jai.io.FileSeekableOutputStream
Deprecated.
Sets the file-pointer offset, measured from the beginning of this stream, at which the next write operation will occur.

The offset may be set beyond the end of the stream. Setting the offset beyond the end of the stream does not change the stream length; the stream length will change only by writing after the offset has been set beyond the end of the stream.

seek(long) - Method in class oracle.ord.media.jai.io.MemoryCacheSeekableOutputStream
Deprecated.
Sets the file-pointer offset, measured from the beginning of this stream, at which the next write operation will occur.

The offset may be set beyond the end of the stream. Setting the offset beyond the end of the stream does not change the stream length; the stream length will change only by writing after the offset has been set beyond the end of the stream.

seek(long) - Method in class oracle.ord.media.jai.io.SeekableOutputStream
Deprecated.
Sets the file-pointer offset, measured from the beginning of this stream, at which the next write operation will occur.

The offset may be set beyond the end of the stream. Setting the offset beyond the end of the stream does not change the stream length; the stream length will change only by writing after the offset has been set beyond the end of the stream.

SeekableInputStream - Interface in oracle.ord.media.io
Deprecated.
An interface describing an input stream that is seekable.
SeekableOutputStream - Class in oracle.ord.media.jai.io
Deprecated.
The SeekableOutputStream abstract class describes OutputStream objects that are seekable.

In order to use JAI with Oracle Multimedia JAI stream objects, you will need to import classes from the oracle.ord.media.jai.io package into your Java file.

All methods except the close method will throw an IOException error if they are called on a stream that is already closed. Calling the close method on a stream that is already closed will have no effect.

SeekableOutputStream() - Constructor for class oracle.ord.media.jai.io.SeekableOutputStream
Deprecated.
 
setAudioDuration(int) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Sets the value of the audioDuration attribute.
setBitRate(int) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Sets the value of the bitRate attribute.
setClobComments(Clob) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Sets the value of the comments attribute.
setClobComments(Clob) - Method in class oracle.ord.im.OrdDoc
Deprecated.
Sets the value of the comments attribute.
setClobComments(Clob) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Sets the value of the comments attribute.
setComments(CLOB) - Method in class oracle.ord.im.OrdAudio
Deprecated.
New applications should use the setClobComments method.
setComments(CLOB) - Method in class oracle.ord.im.OrdDoc
Deprecated.
New applications should use the setClobComments method.
setComments(CLOB) - Method in class oracle.ord.im.OrdVideo
Deprecated.
New applications should use the setClobComments method.
setCompressionFormat(String) - Method in class oracle.ord.im.OrdImage
Deprecated.
Sets the value of the compressionFormat attribute.
setCompressionType(String) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Sets the value of the compressionType attribute.
setCompressionType(String) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Sets the value of the compressionType attribute.
setContentFormat(String) - Method in class oracle.ord.im.OrdImage
Deprecated.
Sets the value of the contentFormat attribute.
setContentLength(int) - Method in class oracle.ord.im.OrdDoc
Deprecated.
Sets the value of the contentLength attribute.
setContentLength(int) - Method in class oracle.ord.im.OrdImage
Deprecated.
Sets the value of the contentLength attribute.
setDescription(String) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Sets the value of the description attribute.
setDescription(String) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Sets the value of the description attribute.
setEncoding(String) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Sets the value of the encoding attribute.
setFormat(String) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Sets the value of the format attribute.
setFormat(String) - Method in class oracle.ord.im.OrdDoc
Deprecated.
Sets the value of the format attribute.
setFormat(String) - Method in class oracle.ord.im.OrdImage
Deprecated.
Sets the value of the fileFormat attribute.
setFormat(String) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Sets the value of the format attribute.
setFrameRate(int) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Sets the value of the frameRate attribute.
setFrameResolution(int) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Sets the value of the frameResolution attribute.
setHeight(int) - Method in class oracle.ord.im.OrdImage
Deprecated.
Sets the value of the height attribute.
setHeight(int) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Sets the value of the height attribute.
setKnownAttributes(String, String, int, int, int, String, int) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Sets the values of the known attributes of the OrdAudio Java object.
setKnownAttributes(String, int, int, int, int, int, int, String, int, int) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Sets the values of the known attributes of the OrdVideo Java object.
setLocal() - Method in class oracle.ord.im.OrdAudio
Deprecated.
Sets the value of the local attribute to indicate that the audio data is stored locally in the database in a BLOB specified by the localData attribute.
setLocal() - Method in class oracle.ord.im.OrdDoc
Deprecated.
Sets the value of the local attribute to indicate that the media data is stored locally in the database in a BLOB specified by the localData attribute.
setLocal() - Method in class oracle.ord.im.OrdImage
Deprecated.
Sets the value of the local attribute to indicate that the image data is stored locally in the database in a BLOB specified by the localData attribute.
setLocal() - Method in class oracle.ord.im.OrdVideo
Deprecated.
Sets the value of the local attribute to indicate that the video data is stored locally in the database in a BLOB specified by the localData attribute.
setMimeType(String) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Sets the value of the mimeType attribute.
setMimeType(String) - Method in class oracle.ord.im.OrdDoc
Deprecated.
Sets the value of the mimeType attribute.
setMimeType(String) - Method in class oracle.ord.im.OrdImage
Deprecated.
Sets the value of the mimeType attribute.
setMimeType(String) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Sets the value of the mimeType attribute.
setNumberOfChannels(int) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Sets the value of the numberOfChannels attribute.
setNumberOfColors(int) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Sets the value of the numberOfColors attribute.
setNumberOfFrames(int) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Sets the value of the numberOfFrames attribute.
setProperties(byte[][]) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Parses the audio data properties and sets the values of the attributes in the OrdAudio Java object.
setProperties(byte[][], boolean) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Parses the audio data properties, sets the values of the attributes in the OrdAudio Java object, and optionally populates the CLOB specified by the comments attribute.
setProperties(byte[][], boolean) - Method in class oracle.ord.im.OrdDoc
Deprecated.
Parses the media data properties, sets the values of the attributes in the OrdDoc Java object, and optionally populates the CLOB specified by the comments attribute.
setProperties() - Method in class oracle.ord.im.OrdImage
Deprecated.
Parses the image data properties and sets the values of the attributes in the OrdImage Java object.
setProperties(String) - Method in class oracle.ord.im.OrdImage
Deprecated.
Writes the characteristics of a foreign image into the appropriate attribute fields.
setProperties(byte[][]) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Parses the video data properties and sets the values of the attributes in the OrdVideo Java object.
setProperties(byte[][], boolean) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Parses the video data properties, sets the values of the attributes in the OrdVideo Java object, and optionally populates the CLOB specified by the comments attribute.
setSampleSize(int) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Sets the value of the sampleSize attribute.
setSamplingRate(int) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Sets the value of the samplingRate attribute.
setSource(String, String, String) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Sets the values of the srcType, srcLocation, and srcName attributes.
setSource(String, String, String) - Method in class oracle.ord.im.OrdDoc
Deprecated.
Sets the values of the srcType, srcLocation, and srcName attributes.
setSource(String, String, String) - Method in class oracle.ord.im.OrdImage
Deprecated.
Sets the values of the srcType, srcLocation, and srcName attributes.
setSource(String, String, String) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Sets the values of the srcType, srcLocation, and srcName attributes.
setUpdateTime(Timestamp) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Sets the value of the updateTime attribute.
setUpdateTime(Timestamp) - Method in class oracle.ord.im.OrdDoc
Deprecated.
Sets the value of the updateTime attribute.
setUpdateTime(Timestamp) - Method in class oracle.ord.im.OrdImage
Deprecated.
Sets the value of the updateTime attribute.
setUpdateTime(Timestamp) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Sets the value of the updateTime attribute.
setVideoDuration(int) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Sets the value of the videoDuration attribute.
setWidth(int) - Method in class oracle.ord.im.OrdImage
Deprecated.
Sets the value of the width attribute.
setWidth(int) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Sets the value of the width attribute.
skip(long) - Method in interface oracle.ord.media.io.SeekableInputStream
Deprecated.
Attempts to skip over the specified number of bytes of input.

This method may skip over some smaller number of bytes, possibly zero. This action may result from a number of conditions. For example, reaching the end of the stream before the specified number of bytes have been skipped. This method never throws an end-of-file exception.

skip(long) - Method in class oracle.ord.media.jai.io.BfileInputStream
Deprecated.
Attempts to skip over the specified number of bytes in the BFILE.

The number of bytes skipped may be smaller than the specified number; for example, the number would be smaller if the end of the file is reached.

skip(long) - Method in class oracle.ord.media.jai.io.BlobInputStream
Deprecated.
Attempts to skip over the specified number of bytes in the Blob.

The number of bytes skipped may be smaller than the specified number; for example, the number would be smaller if the end of the file is reached.

skip(long) - Method in class oracle.ord.media.jai.io.FileSeekableInputStream
Deprecated.
Attempts to skip over the specified number of bytes of input.

This method may skip over some smaller number of bytes, possibly zero. This action may result from a number of conditions. For example, reaching the end of the stream before the specified number of bytes have been skipped. This method never throws an end-of-file exception.

T

trimSource(byte[][], int) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Trims the data to the specified length.
trimSource(byte[][], int) - Method in class oracle.ord.im.OrdDoc
Deprecated.
Trims the data to the specified length.
trimSource(byte[][], int) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Trims the data to the specified length.
truncate(long) - Method in class oracle.ord.media.jai.io.BlobOutputStream
Deprecated.
Truncates the stream to the specified length.
truncate(long) - Method in class oracle.ord.media.jai.io.ByteArraySeekableOutputStream
Deprecated.
Truncates the stream to the specified length.
truncate(long) - Method in class oracle.ord.media.jai.io.FileSeekableOutputStream
Deprecated.
Truncates the stream to the specified length.
truncate(long) - Method in class oracle.ord.media.jai.io.MemoryCacheSeekableOutputStream
Deprecated.
Truncates the stream to the specified length.
truncate(long) - Method in class oracle.ord.media.jai.io.SeekableOutputStream
Deprecated.
Truncates the stream to the specified length.

W

wrapOutputStream(OutputStream) - Static method in class oracle.ord.media.jai.io.SeekableOutputStream
Deprecated.
Returns a SeekableOutputStream object that will write to a specified OutputStream object. If the specified OutputStream object is not empty, subsequent write operations will append to the existing bytes in the OutputStream object. Currently, for a generic output stream, the SeekableOutputStream object that is returned is a MemoryCacheSeekableOutputStream object. To avoid the restrictions in the MemoryCacheSeekableOutputStream class, use the SeekableOutputStream subclasses, such as BlobOutputStream, FileSeekableOutputStream, and ByteArraySeekableOutputStream, if possible.

See the MemoryCacheSeekableOutputStream class for information about restrictions and implementation details for the class.

write(InputStream, OutputStream) - Static method in class oracle.ord.im.OrdMediaUtil
Deprecated.
Reads the InputStream object and writes to the OutputStream object.
write(int) - Method in class oracle.ord.media.jai.io.BlobOutputStream
Deprecated.
Writes the specified byte to the Blob.
write(byte[]) - Method in class oracle.ord.media.jai.io.BlobOutputStream
Deprecated.
Writes all bytes in the specified byte array to the Blob.
write(byte[], int, int) - Method in class oracle.ord.media.jai.io.BlobOutputStream
Deprecated.
Writes the specified number of bytes from the specified byte array to the Blob.
write(int) - Method in class oracle.ord.media.jai.io.ByteArraySeekableOutputStream
Deprecated.
Writes the specified byte to the stream.
write(byte[]) - Method in class oracle.ord.media.jai.io.ByteArraySeekableOutputStream
Deprecated.
Writes all bytes in the specified byte array to the stream.
write(byte[], int, int) - Method in class oracle.ord.media.jai.io.ByteArraySeekableOutputStream
Deprecated.
Writes the specified number of bytes from the specified byte array to the stream.
write(int) - Method in class oracle.ord.media.jai.io.FileSeekableOutputStream
Deprecated.
Writes the specified byte to the file.
write(byte[]) - Method in class oracle.ord.media.jai.io.FileSeekableOutputStream
Deprecated.
Writes all bytes in the specified byte array to the file.
write(byte[], int, int) - Method in class oracle.ord.media.jai.io.FileSeekableOutputStream
Deprecated.
Writes the specified number of bytes from the specified byte array to the file.
write(int) - Method in class oracle.ord.media.jai.io.MemoryCacheSeekableOutputStream
Deprecated.
Writes the specified byte to the stream.
write(byte[]) - Method in class oracle.ord.media.jai.io.MemoryCacheSeekableOutputStream
Deprecated.
Writes all bytes in the specified byte array to the stream.
write(byte[], int, int) - Method in class oracle.ord.media.jai.io.MemoryCacheSeekableOutputStream
Deprecated.
Writes the specified number of bytes from the specified byte array to the stream.
writeToSource(byte[][], int, int, byte[]) - Method in class oracle.ord.im.OrdAudio
Deprecated.
Writes data to the data source.
writeToSource(byte[][], int, int, byte[]) - Method in class oracle.ord.im.OrdDoc
Deprecated.
Writes data to the data source.
writeToSource(byte[][], int, int, byte[]) - Method in class oracle.ord.im.OrdVideo
Deprecated.
Writes data to the data source.
A B C D E F G H I L M O P R S T W 
Skip navigation links
Oracle® Multimedia Java API Reference
12c Release 2 (12.2)

E86001-01

Copyright © 1999, 2017, Oracle and/or its affiliates. All rights reserved.