Uses of Interface
io.stargate.sdk.data.domain.odm.DocumentResultMapper
Packages that use DocumentResultMapper
-
Uses of DocumentResultMapper in io.stargate.sdk.data
Methods in io.stargate.sdk.data with parameters of type DocumentResultMapperModifier and TypeMethodDescription<DOC> Stream<DocumentResult<DOC>> CollectionClient.find(SelectQuery pageQuery, DocumentResultMapper<DOC> mapper) Search records with a filter<DOC> Stream<DocumentResult<DOC>> CollectionClient.findAll(DocumentResultMapper<DOC> mapper) Find All with Object Mapping.<DOC> Optional<DocumentResult<DOC>> CollectionClient.findById(@NonNull String id, DocumentResultMapper<DOC> mapper) Find document from its id.<DOC> Optional<DocumentResult<DOC>> CollectionClient.findOne(SelectQuery query, DocumentResultMapper<DOC> mapper) Find one document matching the query.<DOC> Optional<DocumentResult<DOC>> CollectionClient.findOne(String query, DocumentResultMapper<DOC> mapper) Find one document matching the query.<DOC> Optional<DocumentResult<DOC>> CollectionClient.findOneByVector(float[] vector, DocumentResultMapper<DOC> mapper) Find document from its vector.<DOC> Page<DocumentResult<DOC>> CollectionClient.findPage(SelectQuery query, DocumentResultMapper<DOC> mapper) Find documents matching the query.<DOC> Page<DocumentResult<DOC>> CollectionClient.findPage(String query, DocumentResultMapper<DOC> mapper) Find documents matching the query.<DOC> Page<DocumentResult<DOC>> CollectionClient.findVectorPage(float[] vector, Filter filter, Integer limit, String pagingState, DocumentResultMapper<DOC> mapper) Search similarity from the vector (page by 20)<DOC> Page<DocumentResult<DOC>> CollectionClient.mapPageJsonResultAsPageResult(Page<JsonDocumentResult> pageJson, DocumentResultMapper<DOC> mapper) Map a page of JsonResult to page result.