Class AbstractSearchEngine

java.lang.Object
es.uam.eps.ir.relison.content.search.AbstractSearchEngine
All Implemented Interfaces:
SearchEngine
Direct Known Subclasses:
VSMSearchEngine

public abstract class AbstractSearchEngine
extends java.lang.Object
implements SearchEngine
Abstract implementation of a search engine.
  • Field Summary

    Fields 
    Modifier and Type Field Description
    protected Index<?> contentIndex
    The index in which to perform the search.
  • Constructor Summary

    Constructors 
    Constructor Description
    AbstractSearchEngine​(Index<?> index)
    Constructor.
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface es.uam.eps.ir.relison.content.search.SearchEngine

    search, search
  • Field Details

    • contentIndex

      protected final Index<?> contentIndex
      The index in which to perform the search.
  • Constructor Details

    • AbstractSearchEngine

      public AbstractSearchEngine​(Index<?> index)
      Constructor.
      Parameters:
      index - the index in which to perform the search.