Mercurial Hosting > luan
annotate src/goodjava/lucene/api/GoodIndexWriterConfig.java @ 1525:f848d40b3b07
lucene.api add boosts
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sat, 18 Jul 2020 20:41:47 -0600 |
parents | 3ab0d043370f |
children | 3bd4d7963456 |
rev | line source |
---|---|
1460 | 1 package goodjava.lucene.api; |
2 | |
3 import java.util.Map; | |
4 import org.apache.lucene.analysis.Analyzer; | |
5 | |
6 | |
7 public interface GoodIndexWriterConfig { | |
8 public boolean isIndexed(String fieldName); | |
9 public Analyzer getAnalyzer(String fieldName); | |
1525
f848d40b3b07
lucene.api add boosts
Franklin Schmidt <fschmidt@gmail.com>
parents:
1460
diff
changeset
|
10 public MoreFieldInfo getMoreFieldInfo(Map<String,Object> storedFields); |
1460 | 11 } |