Click or drag to resize

BaseFullTextIndexer Class

Abstract Base Class for Full Text Indexers which implements the basic logic leaving derived classes to implement the index specific logic.
Inheritance Hierarchy

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

The BaseFullTextIndexer type exposes the following members.

Constructors
  NameDescription
Protected methodBaseFullTextIndexer
Initializes a new instance of the BaseFullTextIndexer class
Top
Properties
  NameDescription
Public propertyIndexingMode
Gets the Indexing Mode used by this Indexer.
Top
Methods
  NameDescription
Public methodDispose
Disposes of the Indexer.
Protected methodDisposeInternal
Virtual method that can be overridden to add implementation specific dispose logic.
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
(Overrides ObjectFinalize.)
Public methodFlush
Ensures any pending changes are flushed to the actual index.
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.
Public methodIndex(ISparqlDataset)
Indexes a Dataset.
Public methodIndex(Triple)
Indexes a Triple.
Protected methodIndex(String, Triple)
Indexes a Triple associating it with the given Graph.
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.
Public methodUnindex(ISparqlDataset)
Unindexes a Dataset.
Public methodUnindex(Triple)
Unindexes a Triple.
Protected methodUnindex(String, Triple)
Unindexes a Triple associating it with the given Graph.
Top
See Also