C# Класс Lucene.Net.Queries.TermsFilter

Constructs a filter for docs matching any of the terms added to this class. Unlike a RangeFilter this can be used for filtering on multiple terms that are not necessarily in a sequence. An example might be a collection of primary keys from a database query result or perhaps a choice of "category" labels picked by the end user. As a filter, this is much faster than the equivalent query (a BooleanQuery with many "should" TermQueries)
Наследование: Lucene.Net.Search.Filter
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Equals ( object obj ) : bool
GetDocIdSet ( Lucene.Net.Index.AtomicReaderContext context, Bits acceptDocs ) : Lucene.Net.Search.DocIdSet
GetHashCode ( ) : int
TermsFilter ( ) : System

Creates a new TermsFilter from the given array. The array can contain duplicate terms and multiple fields.

TermsFilter ( List terms ) : System

Creates a new TermsFilter from the given list. The list can contain duplicate terms and multiple fields.

TermsFilter ( string field ) : System

Creates a new TermsFilter from the given BytesRef array for a single field.

TermsFilter ( string field, List terms ) : System

Creates a new TermsFilter from the given BytesRef list for a single field.

ToString ( ) : string

Приватные методы

Метод Описание
TermsFilter ( FieldAndTermEnum iter, int length ) : System

Описание методов

Equals() публичный Метод

public Equals ( object obj ) : bool
obj object
Результат bool

GetDocIdSet() публичный Метод

public GetDocIdSet ( Lucene.Net.Index.AtomicReaderContext context, Bits acceptDocs ) : Lucene.Net.Search.DocIdSet
context Lucene.Net.Index.AtomicReaderContext
acceptDocs Bits
Результат Lucene.Net.Search.DocIdSet

GetHashCode() публичный Метод

public GetHashCode ( ) : int
Результат int

TermsFilter() публичный Метод

Creates a new TermsFilter from the given array. The array can contain duplicate terms and multiple fields.
public TermsFilter ( ) : System
Результат System

TermsFilter() публичный Метод

Creates a new TermsFilter from the given list. The list can contain duplicate terms and multiple fields.
public TermsFilter ( List terms ) : System
terms List
Результат System

TermsFilter() публичный Метод

Creates a new TermsFilter from the given BytesRef array for a single field.
public TermsFilter ( string field ) : System
field string
Результат System

TermsFilter() публичный Метод

Creates a new TermsFilter from the given BytesRef list for a single field.
public TermsFilter ( string field, List terms ) : System
field string
terms List
Результат System

ToString() публичный Метод

public ToString ( ) : string
Результат string