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
파일 보기 프로젝트 열기: paulirwin/lucene.net 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
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