Uses of Interface
org.eclipse.rdf4j.sail.lucene.SearchDocument
-
Packages that use SearchDocument Package Description org.eclipse.rdf4j.sail.lucene A Sail implementation that supports full-text indexing via the Lucene API. -
-
Uses of SearchDocument in org.eclipse.rdf4j.sail.lucene
Fields in org.eclipse.rdf4j.sail.lucene declared as SearchDocument Modifier and Type Field Description private SearchDocument
PropertyCache. doc
Methods in org.eclipse.rdf4j.sail.lucene that return SearchDocument Modifier and Type Method Description protected abstract SearchDocument
AbstractSearchIndex. copyDocument(SearchDocument doc)
protected abstract SearchDocument
AbstractSearchIndex. getDocument(java.lang.String id)
SearchDocument
DocumentResult. getDocument()
Returns null if the document no longer exists.protected abstract SearchDocument
AbstractSearchIndex. newDocument(java.lang.String id, java.lang.String resourceId, java.lang.String context)
Methods in org.eclipse.rdf4j.sail.lucene that return types with arguments of type SearchDocument Modifier and Type Method Description protected abstract java.lang.Iterable<? extends SearchDocument>
AbstractSearchIndex. getDocuments(java.lang.String resourceId)
Methods in org.eclipse.rdf4j.sail.lucene with parameters of type SearchDocument Modifier and Type Method Description void
BulkUpdater. add(SearchDocument doc)
void
SimpleBulkUpdater. add(SearchDocument doc)
protected abstract void
AbstractSearchIndex. addDocument(SearchDocument doc)
private void
AbstractSearchIndex. addProperty(java.lang.String field, java.lang.String value, SearchDocument document)
private void
AbstractSearchIndex. addProperty(Statement statement, SearchDocument document)
check if the passed statement should be added (is it indexed? is it stored?) and add it as predicate to the passed document.protected abstract SearchDocument
AbstractSearchIndex. copyDocument(SearchDocument doc)
private boolean
AbstractSearchIndex. copyDocument(SearchDocument newDocument, SearchDocument document, java.util.Map<java.lang.String,java.util.Set<java.lang.String>> removedProperties)
Creates a copy of the old document; updating the retrieved Document instance works ok for stored properties but indexed data gets lost when doing an IndexWriter.updateDocument with it.private static int
AbstractSearchIndex. countPropertyValues(SearchDocument document)
void
BulkUpdater. delete(SearchDocument doc)
void
SimpleBulkUpdater. delete(SearchDocument doc)
protected abstract void
AbstractSearchIndex. deleteDocument(SearchDocument doc)
protected Resource
AbstractSearchIndex. getResource(SearchDocument document)
Returns the Resource corresponding with the specified Document.void
BulkUpdater. update(SearchDocument doc)
void
SimpleBulkUpdater. update(SearchDocument doc)
protected abstract void
AbstractSearchIndex. updateDocument(SearchDocument doc)
Constructors in org.eclipse.rdf4j.sail.lucene with parameters of type SearchDocument Constructor Description PropertyCache(SearchDocument doc)
-