Uses of Class
com.attivio.sdk.search.SearchDocument
-
Packages that use SearchDocument Package Description com.attivio.client Contains the Client Attivio API for adding content, submitting queries, and sending general purpose messages to an Attivio server.com.attivio.client.streaming Contains client code for streaming search results.com.attivio.sdk.client Interfaces for client side AIE development.com.attivio.sdk.client.streaming Interfaces that allow developers to request all results, facets, or document id's back from a query.com.attivio.sdk.search com.attivio.sdk.test -
-
Uses of SearchDocument in com.attivio.client
Methods in com.attivio.client that return SearchDocument Modifier and Type Method Description SearchDocument
AbstractSearchClient. getDocumentById(java.lang.String documentId)
Gets a document by a specific document IdSearchDocument
MockSearchClient. getDocumentById(java.lang.String documentId)
Methods in com.attivio.client with parameters of type SearchDocument Modifier and Type Method Description void
MockSearchClient. add(SearchDocument... docs)
Add documents to be returned on a search call -
Uses of SearchDocument in com.attivio.client.streaming
Methods in com.attivio.client.streaming that return SearchDocument Modifier and Type Method Description SearchDocument
SearchDocumentSerializer. read(java.io.InputStream in)
Methods in com.attivio.client.streaming that return types with arguments of type SearchDocument Modifier and Type Method Description java.lang.Iterable<SearchDocument>
StreamedResponseClient. getDocuments()
Get the response documents.Methods in com.attivio.client.streaming with parameters of type SearchDocument Modifier and Type Method Description int
SearchDocumentSerializer.FieldDef. read(java.io.DataInputStream in, SearchDocument doc)
void
SearchDocumentSerializer. write(java.io.OutputStream out, SearchDocument doc)
-
Uses of SearchDocument in com.attivio.sdk.client
Methods in com.attivio.sdk.client that return SearchDocument Modifier and Type Method Description SearchDocument
SearchClient. getDocumentById(java.lang.String documentId)
Gets a document by a specific document Id -
Uses of SearchDocument in com.attivio.sdk.client.streaming
Methods in com.attivio.sdk.client.streaming that return types with arguments of type SearchDocument Modifier and Type Method Description java.lang.Iterable<SearchDocument>
StreamingQueryResponse. getDocuments()
Get the response documents. -
Uses of SearchDocument in com.attivio.sdk.search
Methods in com.attivio.sdk.search that return SearchDocument Modifier and Type Method Description SearchDocument
SearchDocument. clone()
SearchDocument
SearchDocumentList. get(int index)
SearchDocument
SearchDocument. getChildDocument(int index)
Get a child document byindex
.SearchDocument
SearchDocumentList. getDocument(java.lang.String id)
Gets a document from this list by ID.Methods in com.attivio.sdk.search that return types with arguments of type SearchDocument Modifier and Type Method Description java.lang.Iterable<SearchDocument>
SearchDocument. getChildDocuments()
Get all of the available child documents.java.util.Iterator<SearchDocument>
SearchDocumentList. iterator()
Methods in com.attivio.sdk.search with parameters of type SearchDocument Modifier and Type Method Description void
SearchDocumentList. add(SearchDocument value)
void
SearchDocument. addChildDocument(SearchDocument value)
Add a child document.void
SearchDocument. setChildDocuments(SearchDocument... value)
Set the child documents.Method parameters in com.attivio.sdk.search with type arguments of type SearchDocument Modifier and Type Method Description void
SearchDocumentList. forEach(java.util.function.Consumer<? super SearchDocument> consumer)
void
SearchDocument. setChildDocuments(java.lang.Iterable<SearchDocument> value)
Set the child documents. -
Uses of SearchDocument in com.attivio.sdk.test
Methods in com.attivio.sdk.test with parameters of type SearchDocument Modifier and Type Method Description static void
DocumentAssert. assertFieldValue(SearchDocument doc, java.lang.String field, java.lang.Object value)
check a doc value.static void
DocumentAssert. assertFieldValueContains(SearchDocument doc, java.lang.String field, java.lang.String value)
static void
DocumentAssert. assertFieldValueList(SearchDocument doc, java.lang.String field, java.lang.Object... values)
Assert that a document has the specified values for a fieldstatic <T> void
DocumentAssert. assertFieldValueSet(SearchDocument doc, java.lang.String field, T... values)
static SearchFieldValue
DocumentAssert. assertSingleValue(SearchDocument doc, java.lang.String field)
-