Click or drag to resize

BaseSimpleFullTextIndexer Class

Abstract Implementation of a simple Full Text Indexer which simply indexes the full text of literal objects and associates a specific Node with that full text.
Inheritance Hierarchy

Namespace:  VDS.RDF.Query.FullText.Indexing
Assembly:  dotNetRDF.Query.FullText (in dotNetRDF.Query.FullText.dll) Version:
Syntax
public abstract class BaseSimpleFullTextIndexer : BaseFullTextIndexer

The BaseSimpleFullTextIndexer type exposes the following members.

Constructors
  NameDescription
Protected methodBaseSimpleFullTextIndexer
Initializes a new instance of the BaseSimpleFullTextIndexer class
Top
Properties
  NameDescription
Public propertyIndexingMode
Gets the Indexing Mode used by this Indexer.
(Inherited from BaseFullTextIndexer.)
Top
Methods
  NameDescription
Public methodDispose
Disposes of the Indexer.
(Inherited from BaseFullTextIndexer.)
Protected methodDisposeInternal
Virtual method that can be overridden to add implementation specific dispose logic.
(Inherited from BaseFullTextIndexer.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Destructor for the Indexer which ensures it is disposed of
(Inherited from BaseFullTextIndexer.)
Public methodFlush
Ensures any pending changes are flushed to the actual index.
(Inherited from BaseFullTextIndexer.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIndex(IGraph)
Indexes a Graph.
(Inherited from BaseFullTextIndexer.)
Public methodIndex(ISparqlDataset)
Indexes a Dataset.
(Inherited from BaseFullTextIndexer.)
Public methodIndex(Triple)
Indexes a Triple.
(Inherited from BaseFullTextIndexer.)
Protected methodIndex(String, Triple)
Indexes a Triple.
(Overrides BaseFullTextIndexerIndex(String, Triple).)
Protected methodIndex(String, INode, String)
Abstract method that derived classes must implement to do the actual indexing of full text and node pairs.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodUnindex(IGraph)
Unindexes a Graph.
(Inherited from BaseFullTextIndexer.)
Public methodUnindex(ISparqlDataset)
Unindexes a Dataset.
(Inherited from BaseFullTextIndexer.)
Public methodUnindex(Triple)
Unindexes a Triple.
(Inherited from BaseFullTextIndexer.)
Protected methodUnindex(String, Triple)
Unindexes a Triple.
(Overrides BaseFullTextIndexerUnindex(String, Triple).)
Protected methodUnindex(String, INode, String)
Abstract method that derived classes must implement to do the actual unindexing of full text and nodes.
Top
See Also