java.lang.Object | |
↳ | com.pspdfkit.document.library.IndexingOptions.Builder |
Builder for creating IndexingOptions
that can be used with enqueueDocuments(List, IndexingOptions)
.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Builder() |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
IndexingOptions |
build()
Creates the immutable
IndexingOptions object. | ||||||||||
IndexingOptions.Builder |
setIgnoreAnnotations(boolean ignoreAnnotations)
Sets whether annotations should be ignored while indexing or not.
| ||||||||||
IndexingOptions.Builder |
setIgnoreDocumentText(boolean ignoreDocumentText)
Sets whether document text (i.e.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Creates the immutable IndexingOptions
object.
IndexingOptions
for being used with PdfLibrary
.
Sets whether annotations should be ignored while indexing or not. This defaults to false
, which means annotations are added to the index.
ignoreAnnotations | true to disable annotation indexing, or false to
enable it. Defaults to false . |
---|
Sets whether document text (i.e. text in the page body) should be ignored while indexing
or not. This defaults to false
, which means document text is added to the index.
ignoreDocumentText | true to disable document text indexing, or false to enable it. Defaults to false . |
---|