mirror of https://github.com/apache/lucene.git
fix dup javadocs
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1490319 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b3c53779e6
commit
d36076c1cd
|
@ -17,6 +17,11 @@ package org.apache.lucene.util.fst;
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
import org.apache.lucene.store.DataInput;
|
||||||
|
import org.apache.lucene.store.DataOutput;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An FST {@link Outputs} implementation where each output
|
* An FST {@link Outputs} implementation where each output
|
||||||
* is one or two non-negative long values. If it's a
|
* is one or two non-negative long values. If it's a
|
||||||
|
@ -41,25 +46,6 @@ package org.apache.lucene.util.fst;
|
||||||
* @lucene.experimental
|
* @lucene.experimental
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
|
|
||||||
import org.apache.lucene.store.DataInput;
|
|
||||||
import org.apache.lucene.store.DataOutput;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* An FST {@link Outputs} implementation where each output
|
|
||||||
* is one or two non-negative long values. If it's a
|
|
||||||
* single output, Long is returned; else, TwoLongs. Order
|
|
||||||
* is preserved in the TwoLongs case, ie .first is the first
|
|
||||||
* input/output added to Builder, and .second is the
|
|
||||||
* second. You cannot store 0 output with this (that's
|
|
||||||
* reserved to mean "no output")!
|
|
||||||
*
|
|
||||||
* NOTE: the resulting FST is not guaranteed to be minimal!
|
|
||||||
* See {@link Builder}.
|
|
||||||
*
|
|
||||||
* @lucene.experimental
|
|
||||||
*/
|
|
||||||
public final class UpToTwoPositiveIntOutputs extends Outputs<Object> {
|
public final class UpToTwoPositiveIntOutputs extends Outputs<Object> {
|
||||||
|
|
||||||
/** Holds two long outputs. */
|
/** Holds two long outputs. */
|
||||||
|
|
Loading…
Reference in New Issue