Mercurial Hosting > luan
annotate src/goodjava/lucene/api/GoodIndexWriterConfig.java @ 1624:fe611f6e3c28
more content types
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sat, 07 Aug 2021 20:01:46 -0600 |
parents | 3bd4d7963456 |
children |
rev | line source |
---|---|
1460 | 1 package goodjava.lucene.api; |
2 | |
3 import java.util.Map; | |
4 import org.apache.lucene.analysis.Analyzer; | |
1528
3bd4d7963456
use goodjava/lucene/api
Franklin Schmidt <fschmidt@gmail.com>
parents:
1525
diff
changeset
|
5 import org.apache.lucene.index.IndexWriterConfig; |
1460 | 6 |
7 | |
8 public interface GoodIndexWriterConfig { | |
1528
3bd4d7963456
use goodjava/lucene/api
Franklin Schmidt <fschmidt@gmail.com>
parents:
1525
diff
changeset
|
9 public IndexWriterConfig newLuceneConfig(); |
1460 | 10 public boolean isIndexed(String fieldName); |
11 public Analyzer getAnalyzer(String fieldName); | |
1525
f848d40b3b07
lucene.api add boosts
Franklin Schmidt <fschmidt@gmail.com>
parents:
1460
diff
changeset
|
12 public MoreFieldInfo getMoreFieldInfo(Map<String,Object> storedFields); |
1460 | 13 } |