Class SetBasedFieldSelector
Declare what fields to load normally and what fields to load lazily
Inheritance
System.Object
SetBasedFieldSelector
Namespace:
Assembly: Lucene.Net.NetCore.dll
Syntax
public class SetBasedFieldSelector : object, FieldSelector
Constructors
Name | Description |
---|---|
SetBasedFieldSelector(ISet<String>, ISet<String>) | Pass in the Set of Field names to load and the Set of Field names to load lazily. If both are null, the Document will not have any Field on it. |
Methods
Name | Description |
---|---|
Accept(String) | Indicate whether to load the field with the given name or not. If the Name is not in either of the
initializing Sets, then NO_LOAD is returned. If a Field name
is in both |