C# Класс Lucene.Net.Documents.SortedDocValuesField

Field that stores a per-document BytesRef value, indexed for sorting. Here's an example usage:

 document.add(new SortedDocValuesField(name, new BytesRef("hello"))); 

If you also need to store the value, you should add a separate StoredField instance.

Наследование: Field
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
TYPE FieldType

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

Метод Описание
SortedDocValuesField ( string name, BytesRef bytes ) : Lucene.Net.Index

Create a new sorted DocValues field.

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

Метод Описание
SortedDocValuesField ( ) : Lucene.Net.Index

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

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

Create a new sorted DocValues field.
if the field name is null
public SortedDocValuesField ( string name, BytesRef bytes ) : Lucene.Net.Index
name string field name
bytes BytesRef binary content
Результат Lucene.Net.Index

Описание свойств

TYPE публичное статическое свойство

Type for sorted bytes DocValues
public static FieldType,Lucene.Net.Documents TYPE
Результат FieldType