Package | Description |
---|---|
com.groupdocs.search |
The package provides classes for indexing and searching text data in documents of different formats.
|
com.groupdocs.search.results |
The package provides search result classes.
|
Modifier and Type | Method and Description |
---|---|
DocumentInfo[] |
Index.getIndexedDocumentItems(DocumentInfo documentInfo)
Gets an array of a document items.
|
DocumentInfo[] |
Index.getIndexedDocuments()
Gets an array of all indexed documents.
|
Modifier and Type | Method and Description |
---|---|
void |
Index.getDocumentText(DocumentInfo documentInfo,
OutputAdapter adapter)
Generates HTML formatted text for indexed document and transfers it through the output adapter.
|
void |
Index.getDocumentText(DocumentInfo documentInfo,
OutputAdapter adapter,
TextOptions options)
Generates HTML formatted text for indexed document and transfers it through the output adapter.
|
DocumentInfo[] |
Index.getIndexedDocumentItems(DocumentInfo documentInfo)
Gets an array of a document items.
|
Modifier and Type | Method and Description |
---|---|
protected static DocumentInfo |
DocumentInfo.create(String filePath,
FileType fileType,
String[] innerPathParts,
int[] partIds,
int documentSourceKind,
boolean indexedWithError) |
DocumentInfo |
FoundDocument.getDocumentInfo()
Gets the document info.
|
Modifier and Type | Method and Description |
---|---|
protected static FoundDocument |
FoundDocument.create(DocumentInfo documentInfo,
double relevance,
int occurrenceCount,
FoundDocumentField[] detailedResults,
String[][] termSequences,
boolean isCaseSensitive) |
protected static int |
DocumentInfo.getDocumentSourceKind(DocumentInfo info) |
protected static String[] |
DocumentInfo.getInnerPathParts(DocumentInfo info) |
protected static int[] |
DocumentInfo.getPartIds(DocumentInfo info) |
protected static FoundDocument |
DocumentInfo.toFoundDocument(DocumentInfo info) |
Constructor and Description |
---|
FoundDocument(DocumentInfo documentInfo,
double relevance,
int occurrenceCount,
FoundDocumentField[] detailedResults,
String[][] termSequences,
boolean isCaseSensitive)
Initializes a new instance of the
FoundDocument class. |