|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.google.appengine.api.search.Document
com.google.appengine.api.search.ScoredDocument
public final class ScoredDocument
Represents a document which may have been scored, possibly some computed expression fields, and a cursor to continue the search from.
Nested Class Summary | |
---|---|
static class |
ScoredDocument.Builder
A builder of scored documents. |
Method Summary | |
---|---|
Cursor |
getCursor()
A Cursor to be used continuing search after this search
result. |
java.util.List<Field> |
getExpressions()
The list of Field which are the result of any extra expressions requested. |
java.util.List<java.lang.Double> |
getSortScores()
The list of scores assigned during sort evaluation. |
static ScoredDocument.Builder |
newBuilder()
|
java.lang.String |
toString()
|
Methods inherited from class com.google.appengine.api.search.Document |
---|
equals, getField, getFieldCount, getFieldNames, getFields, getId, getLocale, getOnlyField, getOrderId, hashCode |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Method Detail |
---|
public java.util.List<java.lang.Double> getSortScores()
public java.util.List<Field> getExpressions()
FieldExpressions
which are named snippet
expressions, then the returned expression will be a Field with the
name specified in the request and HTML value set to the snippet.
public Cursor getCursor()
Cursor
to be used continuing search after this search
result. For this field to be populated, use
QueryOptions#setCursor(Cursor)
, where the cursor is
created by Cursor.newBuilder().setPerDocument().build()
.
Otherwise getCursor()
will return null.
public static ScoredDocument.Builder newBuilder()
public java.lang.String toString()
toString
in class Document
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |