com.google.appengine.api.search
Class RescoringMatchScorer.Builder

java.lang.Object
  extended by com.google.appengine.api.search.MatchScorer.Builder
      extended by com.google.appengine.api.search.RescoringMatchScorer.Builder
Enclosing class:
RescoringMatchScorer

public static final class RescoringMatchScorer.Builder
extends MatchScorer.Builder

A builder that constructs RescoringMatchScorers. A RescoringMatchScorer will invoke a scorer on each search result. The following code illustrates setting a match scorer to score documents, scoring at most 1000 documents.

   RescoringMatchScorer scorer = RescoringMatchScorer.newBuilder().build();
 


Method Summary
 RescoringMatchScorer build()
          Builds a RescoringMatchScorer from the set values.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

build

public RescoringMatchScorer build()
Builds a RescoringMatchScorer from the set values.

Overrides:
build in class MatchScorer.Builder
Returns:
a RescoringMatchScorer built from the set values