Lucene.Net  3.0.3
Lucene.Net is a .NET port of the Java Lucene Indexing Library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Properties
Public Member Functions | Static Public Attributes | List of all members
Lucene.Net.Index.IndexReader.FieldOption Class Reference

Constants describing field properties, for example used for IndexReader.GetFieldNames(FieldOption). More...

Public Member Functions

override System.String ToString ()
 

Static Public Attributes

static readonly FieldOption ALL = new FieldOption("ALL")
 All fields
 
static readonly FieldOption INDEXED = new FieldOption("INDEXED")
 All indexed fields
 
static readonly FieldOption STORES_PAYLOADS = new FieldOption("STORES_PAYLOADS")
 All fields that store payloads
 
static readonly FieldOption OMIT_TERM_FREQ_AND_POSITIONS = new FieldOption("OMIT_TERM_FREQ_AND_POSITIONS")
 All fields that omit tf
 
static readonly FieldOption UNINDEXED = new FieldOption("UNINDEXED")
 All fields which are not indexed
 
static readonly FieldOption INDEXED_WITH_TERMVECTOR = new FieldOption("INDEXED_WITH_TERMVECTOR")
 All fields which are indexed with termvectors enabled
 
static readonly FieldOption INDEXED_NO_TERMVECTOR = new FieldOption("INDEXED_NO_TERMVECTOR")
 All fields which are indexed but don't have termvectors enabled
 
static readonly FieldOption TERMVECTOR = new FieldOption("TERMVECTOR")
 All fields with termvectors enabled. Please note that only standard termvector fields are returned
 
static readonly FieldOption TERMVECTOR_WITH_POSITION = new FieldOption("TERMVECTOR_WITH_POSITION")
 All fields with termvectors with position values enabled
 
static readonly FieldOption TERMVECTOR_WITH_OFFSET = new FieldOption("TERMVECTOR_WITH_OFFSET")
 All fields with termvectors with offset values enabled
 
static readonly FieldOption TERMVECTOR_WITH_POSITION_OFFSET = new FieldOption("TERMVECTOR_WITH_POSITION_OFFSET")
 All fields with termvectors with offset values and position values enabled
 

Detailed Description

Constants describing field properties, for example used for IndexReader.GetFieldNames(FieldOption).

Definition at line 87 of file IndexReader.cs.

Member Function Documentation

override System.String Lucene.Net.Index.IndexReader.FieldOption.ToString ( )

Definition at line 97 of file IndexReader.cs.

Member Data Documentation

readonly FieldOption Lucene.Net.Index.IndexReader.FieldOption.ALL = new FieldOption("ALL")
static

All fields

Definition at line 102 of file IndexReader.cs.

readonly FieldOption Lucene.Net.Index.IndexReader.FieldOption.INDEXED = new FieldOption("INDEXED")
static

All indexed fields

Definition at line 104 of file IndexReader.cs.

readonly FieldOption Lucene.Net.Index.IndexReader.FieldOption.INDEXED_NO_TERMVECTOR = new FieldOption("INDEXED_NO_TERMVECTOR")
static

All fields which are indexed but don't have termvectors enabled

Definition at line 114 of file IndexReader.cs.

readonly FieldOption Lucene.Net.Index.IndexReader.FieldOption.INDEXED_WITH_TERMVECTOR = new FieldOption("INDEXED_WITH_TERMVECTOR")
static

All fields which are indexed with termvectors enabled

Definition at line 112 of file IndexReader.cs.

readonly FieldOption Lucene.Net.Index.IndexReader.FieldOption.OMIT_TERM_FREQ_AND_POSITIONS = new FieldOption("OMIT_TERM_FREQ_AND_POSITIONS")
static

All fields that omit tf

Definition at line 108 of file IndexReader.cs.

readonly FieldOption Lucene.Net.Index.IndexReader.FieldOption.STORES_PAYLOADS = new FieldOption("STORES_PAYLOADS")
static

All fields that store payloads

Definition at line 106 of file IndexReader.cs.

readonly FieldOption Lucene.Net.Index.IndexReader.FieldOption.TERMVECTOR = new FieldOption("TERMVECTOR")
static

All fields with termvectors enabled. Please note that only standard termvector fields are returned

Definition at line 116 of file IndexReader.cs.

readonly FieldOption Lucene.Net.Index.IndexReader.FieldOption.TERMVECTOR_WITH_OFFSET = new FieldOption("TERMVECTOR_WITH_OFFSET")
static

All fields with termvectors with offset values enabled

Definition at line 120 of file IndexReader.cs.

readonly FieldOption Lucene.Net.Index.IndexReader.FieldOption.TERMVECTOR_WITH_POSITION = new FieldOption("TERMVECTOR_WITH_POSITION")
static

All fields with termvectors with position values enabled

Definition at line 118 of file IndexReader.cs.

readonly FieldOption Lucene.Net.Index.IndexReader.FieldOption.TERMVECTOR_WITH_POSITION_OFFSET = new FieldOption("TERMVECTOR_WITH_POSITION_OFFSET")
static

All fields with termvectors with offset values and position values enabled

Definition at line 122 of file IndexReader.cs.

readonly FieldOption Lucene.Net.Index.IndexReader.FieldOption.UNINDEXED = new FieldOption("UNINDEXED")
static

All fields which are not indexed

Definition at line 110 of file IndexReader.cs.


The documentation for this class was generated from the following file: