YYEOF is not a character, it's token type.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1626019 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dawid Weiss 2014-09-18 16:20:27 +00:00
parent c7356f6456
commit d4273eba69
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ import java.io.IOException;
*/ */
public interface StandardTokenizerInterface { public interface StandardTokenizerInterface {
/** This character denotes the end of file */ /** This token type, as returned from {#link #getNextToken()}, denotes the end of file */
public static final int YYEOF = -1; public static final int YYEOF = -1;
/** /**