Mercurial Hosting > luan
annotate src/goodjava/lucene/api/GoodIndexWriterConfig.java @ 1527:fa1e3adbebfb
minor
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 26 Jul 2020 15:06:15 -0600 |
parents | f848d40b3b07 |
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 } |