JavaScript is disabled on your browser.
Enum Constant Summary
Enum Constants
Convert multiple documents to HTML format in a batch (docling-serve only)
Convert multiple documents to JSON format in a batch (docling-serve only)
Convert multiple documents to markdown format in a batch (docling-serve only)
Extract structured data from multiple documents in a batch (docling-serve only)
Extract text content from multiple documents in a batch (docling-serve only)
Check the status of an async conversion task (docling-serve only)
Convert document to HTML format
Convert document to JSON format with structure
Convert document to markdown format
Extract document metadata (author, title, page count, creation date, etc.)
Extract structured data including tables and layout
Extract text content from document
Submit an async conversion and return task ID (docling-serve only)
Method Summary
All Methods Static Methods Concrete Methods
Returns the enum constant of this class with the specified name.
Returns an array containing the constants of this enum class, in
the order they are declared.
Methods inherited from class java.lang.Enum
clone , compareTo , describeConstable , equals , finalize , getDeclaringClass , hashCode , name , ordinal , toString , valueOf
Enum Constant Details
CONVERT_TO_MARKDOWN
Convert document to markdown format
CONVERT_TO_HTML
Convert document to HTML format
CONVERT_TO_JSON
Convert document to JSON format with structure
SUBMIT_ASYNC_CONVERSION
Submit an async conversion and return task ID (docling-serve only)
CHECK_CONVERSION_STATUS
Check the status of an async conversion task (docling-serve only)
BATCH_CONVERT_TO_MARKDOWN
Convert multiple documents to markdown format in a batch (docling-serve only)
BATCH_CONVERT_TO_HTML
Convert multiple documents to HTML format in a batch (docling-serve only)
BATCH_CONVERT_TO_JSON
Convert multiple documents to JSON format in a batch (docling-serve only)
Method Details
values
Returns an array containing the constants of this enum class, in
the order they are declared.
Returns:
an array containing the constants of this enum class, in the order they are declared
valueOf
Returns the enum constant of this class with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this class. (Extraneous whitespace characters are
not permitted.)
Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum class has no constant with the specified name
NullPointerException - if the argument is null