| java.lang.Object org.apache.lucene.document.SetBasedFieldSelector
SetBasedFieldSelector | public class SetBasedFieldSelector implements FieldSelector(Code) | | Declare what fields to load normally and what fields to load lazily
|
SetBasedFieldSelector | public SetBasedFieldSelector(Set fieldsToLoad, Set lazyFieldsToLoad)(Code) | | 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.
Parameters: fieldsToLoad - A Set of String field names to load. May be empty, but not null Parameters: lazyFieldsToLoad - A Set of String field names to load lazily. May be empty, but not null |
|
|