mirror of https://github.com/apache/lucene.git
javadoc: fix confusing terminology
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1089836 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1e79dd3a57
commit
528a4b806a
|
@ -219,7 +219,7 @@ public class Builder<T> {
|
|||
add(scratchIntsRef, output);
|
||||
}
|
||||
|
||||
/** Sugar: adds the UTF32 chars from char[] slice. FST
|
||||
/** Sugar: adds the UTF32 codepoints from char[] slice. FST
|
||||
* must be FST.INPUT_TYPE.BYTE4! */
|
||||
public void add(char[] s, int offset, int length, T output) throws IOException {
|
||||
assert fst.getInputType() == FST.INPUT_TYPE.BYTE4;
|
||||
|
@ -237,7 +237,7 @@ public class Builder<T> {
|
|||
add(scratchIntsRef, output);
|
||||
}
|
||||
|
||||
/** Sugar: adds the UTF32 chars from CharSequence. FST
|
||||
/** Sugar: adds the UTF32 codepoints from CharSequence. FST
|
||||
* must be FST.INPUT_TYPE.BYTE4! */
|
||||
public void add(CharSequence s, T output) throws IOException {
|
||||
assert fst.getInputType() == FST.INPUT_TYPE.BYTE4;
|
||||
|
|
Loading…
Reference in New Issue