annotate src/goodjava/lucene/api/MoreFieldInfo.java @ 2016:470a089c95aa
 
add LuanCompiler.fileVersion
 | author | 
 Franklin Schmidt <fschmidt@gmail.com> | 
 | date | 
 Thu, 02 Oct 2025 13:52:24 -0600 | 
 | parents | 
 f848d40b3b07  | 
 | children | 
  | 
 | rev | 
   line source | 
  
| 
1525
 | 
     1 package goodjava.lucene.api;
 | 
| 
 | 
     2 
 | 
| 
 | 
     3 import java.util.Map;
 | 
| 
 | 
     4 
 | 
| 
 | 
     5 
 | 
| 
 | 
     6 public final class MoreFieldInfo {
 | 
| 
 | 
     7 	public final Map<String,Object> unstoredFields;
 | 
| 
 | 
     8 	public final Map<String,Float> boosts;
 | 
| 
 | 
     9 
 | 
| 
 | 
    10 	public MoreFieldInfo(Map<String,Object> unstoredFields,Map<String,Float> boosts) {
 | 
| 
 | 
    11 		this.unstoredFields = unstoredFields;
 | 
| 
 | 
    12 		this.boosts = boosts;
 | 
| 
 | 
    13 	}
 | 
| 
 | 
    14 }
 |