mirror of https://github.com/apache/lucene.git
javadocs
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1237506 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d1165b1972
commit
124b5e3477
|
@ -78,7 +78,8 @@ public class Builder<T> {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Instantiates an FST/FSA builder without any pruning. A shortcut
|
* Instantiates an FST/FSA builder without any pruning. A shortcut
|
||||||
* to {@link #Builder(FST.INPUT_TYPE, int, int, boolean, boolean, int, Outputs, FreezeTail)} with
|
* to {@link #Builder(FST.INPUT_TYPE, int, int, boolean,
|
||||||
|
* boolean, int, Outputs, FreezeTail, boolean)} with
|
||||||
* pruning options turned off.
|
* pruning options turned off.
|
||||||
*/
|
*/
|
||||||
public Builder(FST.INPUT_TYPE inputType, Outputs<T> outputs) {
|
public Builder(FST.INPUT_TYPE inputType, Outputs<T> outputs) {
|
||||||
|
@ -122,9 +123,10 @@ public class Builder<T> {
|
||||||
* FSA, use {@link NoOutputs#getSingleton()} and {@link NoOutputs#getNoOutput()} as the
|
* FSA, use {@link NoOutputs#getSingleton()} and {@link NoOutputs#getNoOutput()} as the
|
||||||
* singleton output object.
|
* singleton output object.
|
||||||
*
|
*
|
||||||
* @param willPackFST Pass true if you will rewrite (compact) the FST before saving. This
|
* @param willPackFST Pass true if you will pack the FST before saving. This
|
||||||
* causes the FST to create additional data structures intenrally to facilitate rewriting, but
|
* causes the FST to create additional data structures internally to facilitate packing, but
|
||||||
* it means the resulting FST cannot be saved: it must first be rewritten using {@link FST#FST(FST,int[])}}
|
* it means the resulting FST cannot be saved: it must
|
||||||
|
* first be packed using {@link FST#pack(int, int)}}.
|
||||||
*/
|
*/
|
||||||
public Builder(FST.INPUT_TYPE inputType, int minSuffixCount1, int minSuffixCount2, boolean doShareSuffix,
|
public Builder(FST.INPUT_TYPE inputType, int minSuffixCount1, int minSuffixCount2, boolean doShareSuffix,
|
||||||
boolean doShareNonSingletonNodes, int shareMaxTailLength, Outputs<T> outputs,
|
boolean doShareNonSingletonNodes, int shareMaxTailLength, Outputs<T> outputs,
|
||||||
|
|
Loading…
Reference in New Issue