Interface IIndexableFieldType
Describes the properties of a field.
Namespace: Lucene.Net.Index
Assembly: Lucene.Net.dll
Syntax
public interface IIndexableFieldType
Properties
| Improve this Doc View SourceDocValueType
DocValues Doc
Declaration
DocValuesType DocValueType { get; }
Property Value
Type | Description |
---|---|
Doc |
IndexOptions
Index
Declaration
IndexOptions IndexOptions { get; }
Property Value
Type | Description |
---|---|
Index |
IsIndexed
true
if this field should be indexed (inverted)
Declaration
bool IsIndexed { get; }
Property Value
Type | Description |
---|---|
System. |
IsStored
true
if the field's value should be stored
Declaration
bool IsStored { get; }
Property Value
Type | Description |
---|---|
System. |
IsTokenized
true
if this field's value should be analyzed by the
Analyzer.
This has no effect if Isfalse
.
Declaration
bool IsTokenized { get; }
Property Value
Type | Description |
---|---|
System. |
OmitNorms
true
if normalization values should be omitted for the field.
This saves memory, but at the expense of scoring quality (length normalization will be disabled), and if you omit norms, you cannot use index-time boosts.
Declaration
bool OmitNorms { get; }
Property Value
Type | Description |
---|---|
System. |
StoreTermVectorOffsets
true
if this field's token character offsets should also
be stored into term vectors.
This option is illegal if term vectors are not enabled for the field
(Storefalse
)
Declaration
bool StoreTermVectorOffsets { get; }
Property Value
Type | Description |
---|---|
System. |
StoreTermVectorPayloads
true
if this field's token payloads should also be stored
into the term vectors.
This option is illegal if term vector positions are not enabled
for the field (Storefalse
).
Declaration
bool StoreTermVectorPayloads { get; }
Property Value
Type | Description |
---|---|
System. |
StoreTermVectorPositions
true
if this field's token positions should also be stored
into the term vectors.
This option is illegal if term vectors are not enabled for the field
(Storefalse
).
Declaration
bool StoreTermVectorPositions { get; }
Property Value
Type | Description |
---|---|
System. |
StoreTermVectors
true
if this field's indexed form should be also stored
into term vectors.
this builds a miniature inverted-index for this field which
can be accessed in a document-oriented way from
Get
This option is illegal if Isfalse
.
Declaration
bool StoreTermVectors { get; }
Property Value
Type | Description |
---|---|
System. |