C# 클래스 Bamboo.Prevalence.Indexing.FullText.Postings

상속: System.Collections.IEnumerable
파일 보기 프로젝트 열기: bamboo/Bamboo.Prevalence 1 사용 예제들

공개 메소드들

메소드 설명
Add ( IRecord record, IndexedField field, int position ) : void

Adds a new occurrence of the term. The occurrence information (field and position) will be added to an existing Posting object whenever possible.

GetEnumerator ( ) : System.Collections.IEnumerator

Enumerates through all the Posting objects.

Postings ( string term ) : System

Creates a new Postings object for a term.

Remove ( IRecord record ) : void

Removes all information related to a specific record from this object.

ToString ( ) : string

Builds a readable representation of this object.

메소드 상세

Add() 공개 메소드

Adds a new occurrence of the term. The occurrence information (field and position) will be added to an existing Posting object whenever possible.
public Add ( IRecord record, IndexedField field, int position ) : void
record IRecord the record where the term was found
field IndexedField the field where the term was found
position int the position in the field where the term was found
리턴 void

GetEnumerator() 공개 메소드

Enumerates through all the Posting objects.
public GetEnumerator ( ) : System.Collections.IEnumerator
리턴 System.Collections.IEnumerator

Postings() 공개 메소드

Creates a new Postings object for a term.
public Postings ( string term ) : System
term string the term
리턴 System

Remove() 공개 메소드

Removes all information related to a specific record from this object.
public Remove ( IRecord record ) : void
record IRecord the record to be removed
리턴 void

ToString() 공개 메소드

Builds a readable representation of this object.
public ToString ( ) : string
리턴 string