|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface Scorer
A Scorer is responsible for scoring a stream of tokens. These token scores
can then be used to compute TextFragment scores.
| Method Summary | |
|---|---|
float |
getFragmentScore()
Called when the Highlighter has no more tokens for the current fragment -
the Scorer returns the weighting it has derived for the most recent
fragment, typically based on the results of getTokenScore(). |
float |
getTokenScore()
Called for each token in the current fragment. |
TokenStream |
init(TokenStream tokenStream)
Called to init the Scorer with a TokenStream. |
void |
startFragment(TextFragment newFragment)
Called when a new fragment is started for consideration. |
| Method Detail |
|---|
TokenStream init(TokenStream tokenStream)
throws IOException
TokenStream. You can grab references to
the attributes you are interested in here and access them from getTokenScore().
tokenStream - the TokenStream that will be scored.
TokenStream that the Highlighter should continue using (eg
if you read the tokenSream in this method) or null to continue
using the same TokenStream that was passed in.
IOExceptionvoid startFragment(TextFragment newFragment)
newFragment - the fragment that will be scored nextfloat getTokenScore()
Highlighter will
increment the TokenStream passed to init on every call.
Highlighter class to influence the
mark-up of the text (this return value is NOT used to score the
fragment)float getFragmentScore()
Highlighter has no more tokens for the current fragment -
the Scorer returns the weighting it has derived for the most recent
fragment, typically based on the results of getTokenScore().
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||