Class Fields
Flex API for access to fields and terms
@lucene.experimental
Inheritance
Assembly: DistributedLucene.Net.dll
Syntax
public abstract class Fields : IEnumerable<string>
Constructors
Name | Description |
---|---|
Fields() | Sole constructor. (For invocation by subclass constructors, typically implicit.) |
Fields
Name | Description |
---|---|
EMPTY_ARRAY | Zero-length Fields array. |
Properties
Name | Description |
---|---|
Count | Gets the number of fields or -1 if the number of distinct field names is unknown. If >= 0, GetEnumerator() will return as many field names. NOTE: This was size() in Lucene. |
UniqueTermCount | Returns the number of terms for all fields, or -1 if this measure isn't stored by the codec. Note that, just like other term measures, this measure does not take deleted documents into account. |
Methods
Name | Description |
---|---|
GetEnumerator() | Returns an enumerator that will step through all field
names. This will not return |
GetTerms(String) | Get the Terms for this field. This will return
|