gate.creole.annic.apache.lucene.analysis
Class Token

java.lang.Object
  extended by gate.creole.annic.apache.lucene.analysis.Token
All Implemented Interfaces:
Serializable

public final class Token
extends Object
implements Serializable

See Also:
Serialized Form

Constructor Summary
Token(String text, int start, int end)
          Constructs a Token with the given term text, and start & end offsets.
Token(String text, int start, int end, String typ)
          Constructs a Token with the given text, start and end offsets, & type.
 
Method Summary
 int endOffset()
          Returns this Token's ending offset, one greater than the position of the last character corresponding to this token in the source text.
 int getPosition()
           
 int getPositionIncrement()
          Returns the position increment of this Token.
 void setPosition(int pos)
           
 void setPositionIncrement(int positionIncrement)
          Set the position increment.
 int startOffset()
          Returns this Token's starting offset, the position of the first character corresponding to this token in the source text.
 String termText()
          Returns the Token's term text.
 String type()
          Returns this Token's lexical type.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Token

public Token(String text,
             int start,
             int end)
Constructs a Token with the given term text, and start & end offsets. The type defaults to "word."


Token

public Token(String text,
             int start,
             int end,
             String typ)
Constructs a Token with the given text, start and end offsets, & type.

Method Detail

setPositionIncrement

public void setPositionIncrement(int positionIncrement)
Set the position increment. This determines the position of this token relative to the previous Token in a TokenStream, used in phrase searching.

The default value is one.

Some common uses for this are:

See Also:
TermPositions

setPosition

public void setPosition(int pos)

getPosition

public int getPosition()

getPositionIncrement

public int getPositionIncrement()
Returns the position increment of this Token.

See Also:
setPositionIncrement(int)

termText

public final String termText()
Returns the Token's term text.


startOffset

public final int startOffset()
Returns this Token's starting offset, the position of the first character corresponding to this token in the source text. Note that the difference between endOffset() and startOffset() may not be equal to termText.length(), as the term text may have been altered by a stemmer or some other filter.


endOffset

public final int endOffset()
Returns this Token's ending offset, one greater than the position of the last character corresponding to this token in the source text.


type

public final String type()
Returns this Token's lexical type. Defaults to "word".