Package org.apache.lucene.util.fst
Class ListOfOutputs<T>
- java.lang.Object
-
- org.apache.lucene.util.fst.Outputs<Object>
-
- org.apache.lucene.util.fst.ListOfOutputs<T>
-
public final class ListOfOutputs<T> extends Outputs<Object>
Wraps another Outputs implementation and encodes one or more of its output values. You can use this when a single input may need to map to more than one output, maintaining order: pass the same input with a different output by callingBuilder.add(IntsRef,Object)multiple times. The builder will then combine the outputs using theOutputs.merge(Object,Object)method.The resulting FST may not be minimal when an input has more than one output, as this requires pushing all multi-output values to a final state.
NOTE: the only way to create multiple outputs is to add the same input to the FST multiple times in a row. This is how the FST maps a single input to multiple outputs (e.g. you cannot pass a List<Object> to
Builder.add(org.apache.lucene.util.IntsRef, T)). If your outputs are longs, and you need at most 2, then useUpToTwoPositiveIntOutputsinstead since it stores the outputs more compactly (by stealing a bit from each long value).NOTE: this cannot wrap itself (ie you cannot make an FST with List<List<Object>> outputs using this).
-
-
Constructor Summary
Constructors Constructor Description ListOfOutputs(Outputs<T> outputs)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Objectadd(Object prefix, Object output)Eg add("foo", "bar") -> "foobar"List<T>asList(Object output)Objectcommon(Object output1, Object output2)Eg common("foobar", "food") -> "foo"ObjectgetNoOutput()NOTE: this output is compared with == so you must ensure that all methods return the single object if it's really no outputObjectmerge(Object first, Object second)StringoutputToString(Object output)Objectread(DataInput in)Decode an output value previously written withOutputs.write(Object, DataOutput).ObjectreadFinalOutput(DataInput in)Decode an output value previously written withOutputs.writeFinalOutput(Object, DataOutput).Objectsubtract(Object object, Object inc)Eg subtract("foobar", "foo") -> "bar"StringtoString()voidwrite(Object output, DataOutput out)Encode an output value into aDataOutput.voidwriteFinalOutput(Object output, DataOutput out)Encode an final node output value into aDataOutput.
-
-
-
Method Detail
-
common
public Object common(Object output1, Object output2)
Description copied from class:OutputsEg common("foobar", "food") -> "foo"
-
subtract
public Object subtract(Object object, Object inc)
Description copied from class:OutputsEg subtract("foobar", "foo") -> "bar"
-
add
public Object add(Object prefix, Object output)
Description copied from class:OutputsEg add("foo", "bar") -> "foobar"
-
write
public void write(Object output, DataOutput out) throws IOException
Description copied from class:OutputsEncode an output value into aDataOutput.- Specified by:
writein classOutputs<Object>- Throws:
IOException
-
writeFinalOutput
public void writeFinalOutput(Object output, DataOutput out) throws IOException
Description copied from class:OutputsEncode an final node output value into aDataOutput. By default this just callsOutputs.write(Object, DataOutput).- Overrides:
writeFinalOutputin classOutputs<Object>- Throws:
IOException
-
read
public Object read(DataInput in) throws IOException
Description copied from class:OutputsDecode an output value previously written withOutputs.write(Object, DataOutput).- Specified by:
readin classOutputs<Object>- Throws:
IOException
-
readFinalOutput
public Object readFinalOutput(DataInput in) throws IOException
Description copied from class:OutputsDecode an output value previously written withOutputs.writeFinalOutput(Object, DataOutput). By default this just callsOutputs.read(DataInput).- Overrides:
readFinalOutputin classOutputs<Object>- Throws:
IOException
-
getNoOutput
public Object getNoOutput()
Description copied from class:OutputsNOTE: this output is compared with == so you must ensure that all methods return the single object if it's really no output- Specified by:
getNoOutputin classOutputs<Object>
-
outputToString
public String outputToString(Object output)
- Specified by:
outputToStringin classOutputs<Object>
-
-