Uses of Class
com.google.appengine.api.search.Document
-
Packages that use Document Package Description com.google.appengine.api.search Provides a service for indexing documents and retrieving them using search queries. -
-
Uses of Document in com.google.appengine.api.search
Subclasses of Document in com.google.appengine.api.search Modifier and Type Class Description classScoredDocumentRepresents a document which may have been scored, possibly some computed expression fields, and a cursor to continue the search from.Methods in com.google.appengine.api.search that return Document Modifier and Type Method Description DocumentDocument.Builder. build()Builds a valid document.DocumentIndex. get(String documentId)Gets aDocumentfor the given document Id.Methods in com.google.appengine.api.search that return types with arguments of type Document Modifier and Type Method Description GetResponse<Document>Index. getRange(GetRequest request)Get an index's documents, in document Id order.GetResponse<Document>Index. getRange(GetRequest.Builder builder)Future<GetResponse<Document>>Index. getRangeAsync(GetRequest request)Future<GetResponse<Document>>Index. getRangeAsync(GetRequest.Builder builder)Methods in com.google.appengine.api.search with parameters of type Document Modifier and Type Method Description PutResponseIndex. put(Document... documents)Put the documents into the index, updating any document that is already present.Future<PutResponse>Index. putAsync(Document... document)Method parameters in com.google.appengine.api.search with type arguments of type Document Modifier and Type Method Description PutResponseIndex. put(Iterable<Document> documents)Future<PutResponse>Index. putAsync(Iterable<Document> documents)
-