Uses of Interface
iglu.ir.Document

Packages that use Document
iglu.ir A set of classes for creating Information Retrieval programs. 
 

Uses of Document in iglu.ir
 

Classes in iglu.ir that implement Document
 class AbstractDocument
          Implements some of the basic Document methods using a TermVector.
 class ASCIIDocument
          Represents a simple ascii document with no highlighted text.
 class HTMLDocument
          A document which can identify HTML Tags and pull out HTML info.
 

Methods in iglu.ir that return Document
 Document PagedDocumentSet.getDoc(int docNum)
          Retrieve the indicated document
 Document DefaultDocumentSet.getDoc(int i)
          Get document i
 Document DocumentSet.getDoc(int docNum)
          Retrieve the document with the given index
 

Methods in iglu.ir with parameters of type Document
 void PorterStemmer.applyFilter(Document d)
          Stems all terms in a document's indexible content.
 TermVector PhraseFrequencyVectorCreator.getVector(Document d)
          Sets phrase scores based on the frequency of bigrams.
 int PagedDocumentSet.addDoc(Document d)
          Add a document with no meta data
 int PagedDocumentSet.addDoc(Document d, java.lang.Object metaData)
          Add a document and associated meta data
 TermVector OrderVectorCreator.getVector(Document d)
          Sets keyword scores based on the order of word occurance.
 void JDBCVectorCreator.addDoc(Document d)
          Add a document to the corpus.
 TermVector JDBCVectorCreator.getVector(Document d)
          Get a vector for the given document.
 TermVector FrequencyVectorCreator.getVector(Document d)
          Sets keyword scores based on the frequency of the words.
 void DropLittleWords.applyFilter(Document d)
           
 int EditableDocumentSet.addDoc(Document d)
           
 int EditableDocumentSet.addDoc(Document d, java.lang.Object metaData)
           
 int DefaultDocumentSet.addDoc(Document d)
          Add a new document with no metadata
 int DefaultDocumentSet.addDoc(Document d, java.lang.Object metaData)
          Add a new document with metadata
 void GeneralVectorCreator.addDoc(Document d)
          Add a document to the corpus.
 TermVector GeneralVectorCreator.getVector(Document d)
          Get a vector for the given document.
 TermVector VectorCreator.getVector(Document d)
          Get a vector for document d.
abstract  void TrainableVectorCreator.addDoc(Document d)
           
 void TFIDFVectorCreator.addDoc(Document d)
          Add a document to the corpus.
 TermVector TFIDFVectorCreator.getVector(Document d)
          Get a vector for the given document.
 void DocumentFilter.applyFilter(Document d)
          Apply the transformation.
 void StopList.applyFilter(Document d)
          Filters all stopwords out of a a document's indexible content.