org.apache.lucene.analysis

Class Token

public final class Token extends Object

A Token is an occurence of a term from the text of a field. It consists of a term's text, the start and end offset of the term in the text of the field, and a type string. The start and end offsets permit applications to re-associate a token with its source text, e.g., to display highlighted query terms in a document browser, or to show matching text fragments in a KWIC (KeyWord In Context) display, etc. The type is an interned string, assigned by a lexical analyzer (a.k.a. tokenizer), naming the lexical or syntactic class that the token belongs to. For example an end of sentence marker token might be implemented with type "eos". The default token type is "word".
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
intendOffset()
Returns this Token's ending offset, one greater than the position of the last character corresponding to this token in the source text.
intgetPositionIncrement()
Returns the position increment of this Token.
voidsetPositionIncrement(int positionIncrement)
Set the position increment.
intstartOffset()
Returns this Token's starting offset, the position of the first character corresponding to this token in the source text.
StringtermText()
Returns the Token's term text.
Stringtype()
Returns this Token's lexical type.

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

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.

getPositionIncrement

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

See Also: Token

setPositionIncrement

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

The default value is one.

Some common uses for this are:

See Also: TermPositions

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.

termText

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

type

public final String type()
Returns this Token's lexical type. Defaults to "word".
Copyright © 2000-2007 Apache Software Foundation. All Rights Reserved.