Modifier and Type | Class and Description |
---|---|
class |
FileConversion
Represents the state of a running file conversion.
|
class |
NativeConversion
Represents the state of a running file conversion using a JNI-based
(native) method to access the file data.
|
Modifier and Type | Method and Description |
---|---|
void |
FilterAdapter.addConversionResult(Conversion conv,
byte[] data)
Pass a block with plain text data from the conversion process to the calling
application.
|
void |
FilterAdapter.addConversionResult(Conversion conv,
byte[] data,
int length)
Pass a block with plain text from the conversion process to the calling
application.
|
void |
FilterAdapter.addConversionResult(Conversion conv,
java.lang.String data)
Pass a block with plain text from the conversion process to the calling
application.
|
void |
FilterAdapter.addConversionResult(java.lang.String mimetype,
java.lang.String filename,
Conversion conv,
byte[] data)
Pass a block with data from the conversion process to the calling
application.
|
void |
FilterAdapter.addConversionResult(java.lang.String mimetype,
java.lang.String filename,
Conversion conv,
byte[] data,
int length)
Pass a block with data from the conversion process to the calling
application.
|
void |
FilterAdapter.addConversionResult(java.lang.String mimetype,
java.lang.String filename,
Conversion conv,
java.lang.String data)
Pass a block with data from the conversion process to the calling
application.
|
void |
FilterAdapter.addExtractedProperty(Conversion conv,
java.lang.String name,
java.lang.String value)
Pass a property name/value pair discovered during the conversion process
to the calling application.
|
void |
FilterAdapter.addHitWord(Conversion conv,
java.lang.String word)
Called by JNI code to supply search hit terms for highlighting
|
abstract void |
FilterAdapter.closeConversion(Conversion conv)
Called to end a conversion procedure.
|
abstract void |
FilterAdapter.convert(Conversion conv,
java.lang.String filename)
Perform the actual conversion.
|
abstract void |
FilterAdapter.openConversion(Conversion conv)
Called to start a conversion procedure.
|