mirror of https://github.com/apache/lucene.git
fix most broken javadocs links, compilation dependencies: link test-framework javadocs to .codecs, remove duplicate package (put all blockterms stuff in .blockterms)
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1381163 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d30f7cd380
commit
260d8fd3f5
|
@ -140,7 +140,7 @@ import org.apache.lucene.util.packed.PackedInts;
|
||||||
* <p>Notes:</p>
|
* <p>Notes:</p>
|
||||||
* <ul>
|
* <ul>
|
||||||
* <li>Here explains MetadataBlock only, other fields are mentioned in
|
* <li>Here explains MetadataBlock only, other fields are mentioned in
|
||||||
* <a href="../lucene40/Lucene40PostingsFormat.html#Termdictionary">Lucene40PostingsFormat:TermDictionary</a>
|
* <a href="{@docRoot}/../core/org/apache/lucene/codecs/lucene40/Lucene40PostingsFormat.html#Termdictionary">Lucene40PostingsFormat:TermDictionary</a>
|
||||||
* </li>
|
* </li>
|
||||||
* <li>PackedBlockSize is the fixed block size for packed blocks. In packed block, bit width is
|
* <li>PackedBlockSize is the fixed block size for packed blocks. In packed block, bit width is
|
||||||
* determined by the largest integer. Smaller block size result in smaller variance among width
|
* determined by the largest integer. Smaller block size result in smaller variance among width
|
||||||
|
@ -176,7 +176,7 @@ import org.apache.lucene.util.packed.PackedInts;
|
||||||
* <dd>
|
* <dd>
|
||||||
* <b>Term Index</b>
|
* <b>Term Index</b>
|
||||||
* <p>The .tim file format is mentioned in
|
* <p>The .tim file format is mentioned in
|
||||||
* <a href="../lucene40/Lucene40PostingsFormat.html#Termindex">Lucene40PostingsFormat:TermIndex</a>
|
* <a href="{@docRoot}/../core/org/apache/lucene/codecs/lucene40/Lucene40PostingsFormat.html#Termindex">Lucene40PostingsFormat:TermIndex</a>
|
||||||
* </dd>
|
* </dd>
|
||||||
* </dl>
|
* </dl>
|
||||||
*
|
*
|
||||||
|
@ -222,7 +222,7 @@ import org.apache.lucene.util.packed.PackedInts;
|
||||||
* </li>
|
* </li>
|
||||||
* <li>VIntBlock stores remaining d-gaps (along with frequencies when possible) with a format
|
* <li>VIntBlock stores remaining d-gaps (along with frequencies when possible) with a format
|
||||||
* mentioned in
|
* mentioned in
|
||||||
* <a href="../lucene40/Lucene40PostingsFormat.html#Frequencies">Lucene40PostingsFormat:Frequencies</a>
|
* <a href="{@docRoot}/../core/org/apache/lucene/codecs/lucene40/Lucene40PostingsFormat.html#Frequencies">Lucene40PostingsFormat:Frequencies</a>
|
||||||
* </li>
|
* </li>
|
||||||
* <li>PackedDocBlockNum is the number of packed blocks for current term's docids or frequencies.
|
* <li>PackedDocBlockNum is the number of packed blocks for current term's docids or frequencies.
|
||||||
* In particular, PackedDocBlockNum = floor(DocFreq/PackedBlockSize) </li>
|
* In particular, PackedDocBlockNum = floor(DocFreq/PackedBlockSize) </li>
|
||||||
|
@ -284,7 +284,7 @@ import org.apache.lucene.util.packed.PackedInts;
|
||||||
* <li>The procedure how PackedPosDeltaBlock is generated is the same as PackedDocDeltaBlock
|
* <li>The procedure how PackedPosDeltaBlock is generated is the same as PackedDocDeltaBlock
|
||||||
* in chapter <a href="#Frequencies">Frequencies and Skip Data</a>.</li>
|
* in chapter <a href="#Frequencies">Frequencies and Skip Data</a>.</li>
|
||||||
* <li>PosDelta is the same as the format mentioned in
|
* <li>PosDelta is the same as the format mentioned in
|
||||||
* <a href="../lucene40/Lucene40PostingsFormat.html#Positions">Lucene40PostingsFormat:Positions</a>
|
* <a href="{@docRoot}/../core/org/apache/lucene/codecs/lucene40/Lucene40PostingsFormat.html#Positions">Lucene40PostingsFormat:Positions</a>
|
||||||
* </li>
|
* </li>
|
||||||
* <li>OffsetStartDelta is the difference between this position's startOffset from the previous
|
* <li>OffsetStartDelta is the difference between this position's startOffset from the previous
|
||||||
* occurrence (or zero, if this is the first occurrence in this document).</li>
|
* occurrence (or zero, if this is the first occurrence in this document).</li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package org.apache.lucene.codecs;
|
package org.apache.lucene.codecs.blockterms;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
|
@ -23,6 +23,10 @@ import java.util.Comparator;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
import java.util.TreeMap;
|
import java.util.TreeMap;
|
||||||
|
|
||||||
|
import org.apache.lucene.codecs.BlockTermState;
|
||||||
|
import org.apache.lucene.codecs.CodecUtil;
|
||||||
|
import org.apache.lucene.codecs.FieldsProducer;
|
||||||
|
import org.apache.lucene.codecs.PostingsReaderBase;
|
||||||
import org.apache.lucene.index.CorruptIndexException;
|
import org.apache.lucene.index.CorruptIndexException;
|
||||||
import org.apache.lucene.index.DocsAndPositionsEnum;
|
import org.apache.lucene.index.DocsAndPositionsEnum;
|
||||||
import org.apache.lucene.index.DocsEnum;
|
import org.apache.lucene.index.DocsEnum;
|
|
@ -1,4 +1,4 @@
|
||||||
package org.apache.lucene.codecs;
|
package org.apache.lucene.codecs.blockterms;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
|
@ -22,6 +22,12 @@ import java.util.ArrayList;
|
||||||
import java.util.Comparator;
|
import java.util.Comparator;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.apache.lucene.codecs.CodecUtil;
|
||||||
|
import org.apache.lucene.codecs.FieldsConsumer;
|
||||||
|
import org.apache.lucene.codecs.PostingsConsumer;
|
||||||
|
import org.apache.lucene.codecs.PostingsWriterBase;
|
||||||
|
import org.apache.lucene.codecs.TermStats;
|
||||||
|
import org.apache.lucene.codecs.TermsConsumer;
|
||||||
import org.apache.lucene.index.FieldInfo;
|
import org.apache.lucene.index.FieldInfo;
|
||||||
import org.apache.lucene.index.FieldInfo.IndexOptions;
|
import org.apache.lucene.index.FieldInfo.IndexOptions;
|
||||||
import org.apache.lucene.index.FieldInfos;
|
import org.apache.lucene.index.FieldInfos;
|
|
@ -1,4 +1,4 @@
|
||||||
package org.apache.lucene.codecs;
|
package org.apache.lucene.codecs.blockterms;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
|
@ -20,6 +20,7 @@ package org.apache.lucene.codecs;
|
||||||
import org.apache.lucene.store.Directory;
|
import org.apache.lucene.store.Directory;
|
||||||
import org.apache.lucene.store.IOContext;
|
import org.apache.lucene.store.IOContext;
|
||||||
import org.apache.lucene.store.IndexInput;
|
import org.apache.lucene.store.IndexInput;
|
||||||
|
import org.apache.lucene.codecs.CodecUtil;
|
||||||
import org.apache.lucene.index.CorruptIndexException;
|
import org.apache.lucene.index.CorruptIndexException;
|
||||||
import org.apache.lucene.index.FieldInfos;
|
import org.apache.lucene.index.FieldInfos;
|
||||||
import org.apache.lucene.index.FieldInfo;
|
import org.apache.lucene.index.FieldInfo;
|
|
@ -1,4 +1,4 @@
|
||||||
package org.apache.lucene.codecs;
|
package org.apache.lucene.codecs.blockterms;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
|
@ -18,6 +18,8 @@ package org.apache.lucene.codecs;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import org.apache.lucene.store.IndexOutput;
|
import org.apache.lucene.store.IndexOutput;
|
||||||
|
import org.apache.lucene.codecs.CodecUtil;
|
||||||
|
import org.apache.lucene.codecs.TermStats;
|
||||||
import org.apache.lucene.index.FieldInfos;
|
import org.apache.lucene.index.FieldInfos;
|
||||||
import org.apache.lucene.index.FieldInfo;
|
import org.apache.lucene.index.FieldInfo;
|
||||||
import org.apache.lucene.index.IndexFileNames;
|
import org.apache.lucene.index.IndexFileNames;
|
|
@ -1,4 +1,4 @@
|
||||||
package org.apache.lucene.codecs;
|
package org.apache.lucene.codecs.blockterms;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
@ -1,4 +1,4 @@
|
||||||
package org.apache.lucene.codecs;
|
package org.apache.lucene.codecs.blockterms;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
|
@ -17,6 +17,7 @@ package org.apache.lucene.codecs;
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
import org.apache.lucene.codecs.TermStats;
|
||||||
import org.apache.lucene.index.FieldInfo;
|
import org.apache.lucene.index.FieldInfo;
|
||||||
import org.apache.lucene.util.BytesRef;
|
import org.apache.lucene.util.BytesRef;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package org.apache.lucene.codecs;
|
package org.apache.lucene.codecs.blockterms;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
|
@ -23,6 +23,7 @@ import java.io.OutputStreamWriter; // for toDot
|
||||||
import java.io.Writer; // for toDot
|
import java.io.Writer; // for toDot
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
|
|
||||||
|
import org.apache.lucene.codecs.CodecUtil;
|
||||||
import org.apache.lucene.index.CorruptIndexException;
|
import org.apache.lucene.index.CorruptIndexException;
|
||||||
import org.apache.lucene.index.FieldInfo;
|
import org.apache.lucene.index.FieldInfo;
|
||||||
import org.apache.lucene.index.FieldInfos;
|
import org.apache.lucene.index.FieldInfos;
|
|
@ -1,4 +1,4 @@
|
||||||
package org.apache.lucene.codecs;
|
package org.apache.lucene.codecs.blockterms;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
|
@ -21,6 +21,8 @@ import java.io.IOException;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.apache.lucene.codecs.CodecUtil;
|
||||||
|
import org.apache.lucene.codecs.TermStats;
|
||||||
import org.apache.lucene.index.FieldInfo;
|
import org.apache.lucene.index.FieldInfo;
|
||||||
import org.apache.lucene.index.FieldInfos;
|
import org.apache.lucene.index.FieldInfos;
|
||||||
import org.apache.lucene.index.IndexFileNames;
|
import org.apache.lucene.index.IndexFileNames;
|
|
@ -0,0 +1,25 @@
|
||||||
|
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
|
||||||
|
<!--
|
||||||
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
|
contributor license agreements. See the NOTICE file distributed with
|
||||||
|
this work for additional information regarding copyright ownership.
|
||||||
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||||
|
(the "License"); you may not use this file except in compliance with
|
||||||
|
the License. You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
-->
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
Pluggable term index / block terms dictionary implementations.
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -569,6 +569,12 @@
|
||||||
</uptodate>
|
</uptodate>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
<target name="check-lucene-codecs-javadocs-uptodate" unless="codecs-javadocs.uptodate">
|
||||||
|
<uptodate property="codecs-javadocs.uptodate" targetfile="${common.dir}/build/codecs/lucene-codecs-${version}-javadoc.jar">
|
||||||
|
<srcfiles dir="${common.dir}/codecs/src/java" includes="**/*.java"/>
|
||||||
|
</uptodate>
|
||||||
|
</target>
|
||||||
|
|
||||||
<target name="javadocs-lucene-core" depends="check-lucene-core-javadocs-uptodate" unless="core-javadocs.uptodate">
|
<target name="javadocs-lucene-core" depends="check-lucene-core-javadocs-uptodate" unless="core-javadocs.uptodate">
|
||||||
<ant dir="${common.dir}/core" target="javadocs" inheritAll="false">
|
<ant dir="${common.dir}/core" target="javadocs" inheritAll="false">
|
||||||
<propertyset refid="uptodate.and.compiled.properties"/>
|
<propertyset refid="uptodate.and.compiled.properties"/>
|
||||||
|
@ -576,8 +582,18 @@
|
||||||
<property name="core-javadocs.uptodate" value="true"/>
|
<property name="core-javadocs.uptodate" value="true"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="compile-codecs">
|
<target name="compile-codecs" unless="codecs.compiled">
|
||||||
<ant dir="${common.dir}/codecs" target="compile-core" inheritAll="false"/>
|
<ant dir="${common.dir}/codecs" target="compile-core" inheritAll="false">
|
||||||
|
<propertyset refid="uptodate.and.compiled.properties"/>
|
||||||
|
</ant>
|
||||||
|
<property name="codecs.compiled" value="true"/>
|
||||||
|
</target>
|
||||||
|
|
||||||
|
<target name="javadocs-lucene-codecs" depends="check-lucene-codecs-javadocs-uptodate" unless="codecs-javadocs.uptodate">
|
||||||
|
<ant dir="${common.dir}/codecs" target="javadocs" inheritAll="false">
|
||||||
|
<propertyset refid="uptodate.and.compiled.properties"/>
|
||||||
|
</ant>
|
||||||
|
<property name="codecs-javadocs.uptodate" value="true"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="compile-test-framework" unless="lucene.test.framework.compiled">
|
<target name="compile-test-framework" unless="lucene.test.framework.compiled">
|
||||||
|
|
|
@ -47,7 +47,7 @@
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="javadocs-core" depends="javadocs"/>
|
<target name="javadocs-core" depends="javadocs"/>
|
||||||
<target name="javadocs" depends="init,javadocs-lucene-core">
|
<target name="javadocs" depends="init,javadocs-lucene-core,javadocs-lucene-codecs">
|
||||||
<sequential>
|
<sequential>
|
||||||
<mkdir dir="${javadoc.dir}/test-framework"/>
|
<mkdir dir="${javadoc.dir}/test-framework"/>
|
||||||
<invoke-javadoc overview="${src.dir}/overview.html"
|
<invoke-javadoc overview="${src.dir}/overview.html"
|
||||||
|
@ -58,6 +58,7 @@
|
||||||
<link offline="true" href="${javadoc.link.junit}"
|
<link offline="true" href="${javadoc.link.junit}"
|
||||||
packagelistLoc="${javadoc.packagelist.dir}/junit"/>
|
packagelistLoc="${javadoc.packagelist.dir}/junit"/>
|
||||||
<link href="../core/"/>
|
<link href="../core/"/>
|
||||||
|
<link href="../codecs/"/>
|
||||||
<link href=""/>
|
<link href=""/>
|
||||||
</sources>
|
</sources>
|
||||||
</invoke-javadoc>
|
</invoke-javadoc>
|
||||||
|
|
|
@ -19,17 +19,17 @@ package org.apache.lucene.codecs.lucene40ords;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
import org.apache.lucene.codecs.BlockTermsReader;
|
|
||||||
import org.apache.lucene.codecs.BlockTermsWriter;
|
|
||||||
import org.apache.lucene.codecs.FieldsConsumer;
|
import org.apache.lucene.codecs.FieldsConsumer;
|
||||||
import org.apache.lucene.codecs.FieldsProducer;
|
import org.apache.lucene.codecs.FieldsProducer;
|
||||||
import org.apache.lucene.codecs.FixedGapTermsIndexReader;
|
|
||||||
import org.apache.lucene.codecs.FixedGapTermsIndexWriter;
|
|
||||||
import org.apache.lucene.codecs.PostingsFormat;
|
import org.apache.lucene.codecs.PostingsFormat;
|
||||||
import org.apache.lucene.codecs.PostingsReaderBase;
|
import org.apache.lucene.codecs.PostingsReaderBase;
|
||||||
import org.apache.lucene.codecs.PostingsWriterBase;
|
import org.apache.lucene.codecs.PostingsWriterBase;
|
||||||
import org.apache.lucene.codecs.TermsIndexReaderBase;
|
import org.apache.lucene.codecs.blockterms.BlockTermsReader;
|
||||||
import org.apache.lucene.codecs.TermsIndexWriterBase;
|
import org.apache.lucene.codecs.blockterms.BlockTermsWriter;
|
||||||
|
import org.apache.lucene.codecs.blockterms.FixedGapTermsIndexReader;
|
||||||
|
import org.apache.lucene.codecs.blockterms.FixedGapTermsIndexWriter;
|
||||||
|
import org.apache.lucene.codecs.blockterms.TermsIndexReaderBase;
|
||||||
|
import org.apache.lucene.codecs.blockterms.TermsIndexWriterBase;
|
||||||
import org.apache.lucene.codecs.lucene40.Lucene40Codec; // javadocs
|
import org.apache.lucene.codecs.lucene40.Lucene40Codec; // javadocs
|
||||||
import org.apache.lucene.codecs.lucene40.Lucene40PostingsReader;
|
import org.apache.lucene.codecs.lucene40.Lucene40PostingsReader;
|
||||||
import org.apache.lucene.codecs.lucene40.Lucene40PostingsWriter;
|
import org.apache.lucene.codecs.lucene40.Lucene40PostingsWriter;
|
||||||
|
|
|
@ -19,17 +19,17 @@ package org.apache.lucene.codecs.mockintblock;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
import org.apache.lucene.codecs.BlockTermsReader;
|
|
||||||
import org.apache.lucene.codecs.BlockTermsWriter;
|
|
||||||
import org.apache.lucene.codecs.FieldsConsumer;
|
import org.apache.lucene.codecs.FieldsConsumer;
|
||||||
import org.apache.lucene.codecs.FieldsProducer;
|
import org.apache.lucene.codecs.FieldsProducer;
|
||||||
import org.apache.lucene.codecs.FixedGapTermsIndexReader;
|
|
||||||
import org.apache.lucene.codecs.FixedGapTermsIndexWriter;
|
|
||||||
import org.apache.lucene.codecs.PostingsFormat;
|
import org.apache.lucene.codecs.PostingsFormat;
|
||||||
import org.apache.lucene.codecs.PostingsReaderBase;
|
import org.apache.lucene.codecs.PostingsReaderBase;
|
||||||
import org.apache.lucene.codecs.PostingsWriterBase;
|
import org.apache.lucene.codecs.PostingsWriterBase;
|
||||||
import org.apache.lucene.codecs.TermsIndexReaderBase;
|
import org.apache.lucene.codecs.blockterms.BlockTermsReader;
|
||||||
import org.apache.lucene.codecs.TermsIndexWriterBase;
|
import org.apache.lucene.codecs.blockterms.BlockTermsWriter;
|
||||||
|
import org.apache.lucene.codecs.blockterms.FixedGapTermsIndexReader;
|
||||||
|
import org.apache.lucene.codecs.blockterms.FixedGapTermsIndexWriter;
|
||||||
|
import org.apache.lucene.codecs.blockterms.TermsIndexReaderBase;
|
||||||
|
import org.apache.lucene.codecs.blockterms.TermsIndexWriterBase;
|
||||||
import org.apache.lucene.codecs.intblock.FixedIntBlockIndexInput;
|
import org.apache.lucene.codecs.intblock.FixedIntBlockIndexInput;
|
||||||
import org.apache.lucene.codecs.intblock.FixedIntBlockIndexOutput;
|
import org.apache.lucene.codecs.intblock.FixedIntBlockIndexOutput;
|
||||||
import org.apache.lucene.codecs.sep.IntIndexInput;
|
import org.apache.lucene.codecs.sep.IntIndexInput;
|
||||||
|
|
|
@ -19,17 +19,17 @@ package org.apache.lucene.codecs.mockintblock;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
import org.apache.lucene.codecs.BlockTermsReader;
|
|
||||||
import org.apache.lucene.codecs.BlockTermsWriter;
|
|
||||||
import org.apache.lucene.codecs.FieldsConsumer;
|
import org.apache.lucene.codecs.FieldsConsumer;
|
||||||
import org.apache.lucene.codecs.FieldsProducer;
|
import org.apache.lucene.codecs.FieldsProducer;
|
||||||
import org.apache.lucene.codecs.FixedGapTermsIndexReader;
|
|
||||||
import org.apache.lucene.codecs.FixedGapTermsIndexWriter;
|
|
||||||
import org.apache.lucene.codecs.PostingsFormat;
|
import org.apache.lucene.codecs.PostingsFormat;
|
||||||
import org.apache.lucene.codecs.PostingsReaderBase;
|
import org.apache.lucene.codecs.PostingsReaderBase;
|
||||||
import org.apache.lucene.codecs.PostingsWriterBase;
|
import org.apache.lucene.codecs.PostingsWriterBase;
|
||||||
import org.apache.lucene.codecs.TermsIndexReaderBase;
|
import org.apache.lucene.codecs.blockterms.BlockTermsReader;
|
||||||
import org.apache.lucene.codecs.TermsIndexWriterBase;
|
import org.apache.lucene.codecs.blockterms.BlockTermsWriter;
|
||||||
|
import org.apache.lucene.codecs.blockterms.FixedGapTermsIndexReader;
|
||||||
|
import org.apache.lucene.codecs.blockterms.FixedGapTermsIndexWriter;
|
||||||
|
import org.apache.lucene.codecs.blockterms.TermsIndexReaderBase;
|
||||||
|
import org.apache.lucene.codecs.blockterms.TermsIndexWriterBase;
|
||||||
import org.apache.lucene.codecs.intblock.VariableIntBlockIndexInput;
|
import org.apache.lucene.codecs.intblock.VariableIntBlockIndexInput;
|
||||||
import org.apache.lucene.codecs.intblock.VariableIntBlockIndexOutput;
|
import org.apache.lucene.codecs.intblock.VariableIntBlockIndexOutput;
|
||||||
import org.apache.lucene.codecs.sep.IntIndexInput;
|
import org.apache.lucene.codecs.sep.IntIndexInput;
|
||||||
|
|
|
@ -22,22 +22,22 @@ import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Random;
|
import java.util.Random;
|
||||||
|
|
||||||
import org.apache.lucene.codecs.BlockTermsReader;
|
|
||||||
import org.apache.lucene.codecs.BlockTermsWriter;
|
|
||||||
import org.apache.lucene.codecs.BlockTreeTermsReader;
|
import org.apache.lucene.codecs.BlockTreeTermsReader;
|
||||||
import org.apache.lucene.codecs.BlockTreeTermsWriter;
|
import org.apache.lucene.codecs.BlockTreeTermsWriter;
|
||||||
import org.apache.lucene.codecs.FieldsConsumer;
|
import org.apache.lucene.codecs.FieldsConsumer;
|
||||||
import org.apache.lucene.codecs.FieldsProducer;
|
import org.apache.lucene.codecs.FieldsProducer;
|
||||||
import org.apache.lucene.codecs.FixedGapTermsIndexReader;
|
|
||||||
import org.apache.lucene.codecs.FixedGapTermsIndexWriter;
|
|
||||||
import org.apache.lucene.codecs.PostingsFormat;
|
import org.apache.lucene.codecs.PostingsFormat;
|
||||||
import org.apache.lucene.codecs.PostingsReaderBase;
|
import org.apache.lucene.codecs.PostingsReaderBase;
|
||||||
import org.apache.lucene.codecs.PostingsWriterBase;
|
import org.apache.lucene.codecs.PostingsWriterBase;
|
||||||
import org.apache.lucene.codecs.TermStats;
|
import org.apache.lucene.codecs.TermStats;
|
||||||
import org.apache.lucene.codecs.TermsIndexReaderBase;
|
import org.apache.lucene.codecs.blockterms.BlockTermsReader;
|
||||||
import org.apache.lucene.codecs.TermsIndexWriterBase;
|
import org.apache.lucene.codecs.blockterms.BlockTermsWriter;
|
||||||
import org.apache.lucene.codecs.VariableGapTermsIndexReader;
|
import org.apache.lucene.codecs.blockterms.FixedGapTermsIndexReader;
|
||||||
import org.apache.lucene.codecs.VariableGapTermsIndexWriter;
|
import org.apache.lucene.codecs.blockterms.FixedGapTermsIndexWriter;
|
||||||
|
import org.apache.lucene.codecs.blockterms.TermsIndexReaderBase;
|
||||||
|
import org.apache.lucene.codecs.blockterms.TermsIndexWriterBase;
|
||||||
|
import org.apache.lucene.codecs.blockterms.VariableGapTermsIndexReader;
|
||||||
|
import org.apache.lucene.codecs.blockterms.VariableGapTermsIndexWriter;
|
||||||
import org.apache.lucene.codecs.lucene40.Lucene40PostingsReader;
|
import org.apache.lucene.codecs.lucene40.Lucene40PostingsReader;
|
||||||
import org.apache.lucene.codecs.lucene40.Lucene40PostingsWriter;
|
import org.apache.lucene.codecs.lucene40.Lucene40PostingsWriter;
|
||||||
import org.apache.lucene.codecs.mockintblock.MockFixedIntBlockPostingsFormat;
|
import org.apache.lucene.codecs.mockintblock.MockFixedIntBlockPostingsFormat;
|
||||||
|
|
|
@ -19,17 +19,17 @@ package org.apache.lucene.codecs.mocksep;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
import org.apache.lucene.codecs.BlockTermsReader;
|
|
||||||
import org.apache.lucene.codecs.BlockTermsWriter;
|
|
||||||
import org.apache.lucene.codecs.FieldsConsumer;
|
import org.apache.lucene.codecs.FieldsConsumer;
|
||||||
import org.apache.lucene.codecs.FieldsProducer;
|
import org.apache.lucene.codecs.FieldsProducer;
|
||||||
import org.apache.lucene.codecs.FixedGapTermsIndexReader;
|
|
||||||
import org.apache.lucene.codecs.FixedGapTermsIndexWriter;
|
|
||||||
import org.apache.lucene.codecs.PostingsFormat;
|
import org.apache.lucene.codecs.PostingsFormat;
|
||||||
import org.apache.lucene.codecs.PostingsReaderBase;
|
import org.apache.lucene.codecs.PostingsReaderBase;
|
||||||
import org.apache.lucene.codecs.PostingsWriterBase;
|
import org.apache.lucene.codecs.PostingsWriterBase;
|
||||||
import org.apache.lucene.codecs.TermsIndexReaderBase;
|
import org.apache.lucene.codecs.blockterms.BlockTermsReader;
|
||||||
import org.apache.lucene.codecs.TermsIndexWriterBase;
|
import org.apache.lucene.codecs.blockterms.BlockTermsWriter;
|
||||||
|
import org.apache.lucene.codecs.blockterms.FixedGapTermsIndexReader;
|
||||||
|
import org.apache.lucene.codecs.blockterms.FixedGapTermsIndexWriter;
|
||||||
|
import org.apache.lucene.codecs.blockterms.TermsIndexReaderBase;
|
||||||
|
import org.apache.lucene.codecs.blockterms.TermsIndexWriterBase;
|
||||||
import org.apache.lucene.codecs.sep.SepPostingsReader;
|
import org.apache.lucene.codecs.sep.SepPostingsReader;
|
||||||
import org.apache.lucene.codecs.sep.SepPostingsWriter;
|
import org.apache.lucene.codecs.sep.SepPostingsWriter;
|
||||||
import org.apache.lucene.index.SegmentWriteState;
|
import org.apache.lucene.index.SegmentWriteState;
|
||||||
|
|
Loading…
Reference in New Issue