Uses of Class
io.stargate.sdk.data.domain.JsonDocumentResult
Packages that use JsonDocumentResult
Package
Description
Core Data API Client Classes.
Object Mapping and Repository Pattern,
-
Uses of JsonDocumentResult in io.stargate.sdk.data
Methods in io.stargate.sdk.data that return types with arguments of type JsonDocumentResultModifier and TypeMethodDescriptionCollectionClient.find(SelectQuery query) Search records with a filterCollectionClient.findAll()Get all items in a collection.Find document from its id.CollectionClient.findOne(SelectQuery query) Find one document matching the query.Find one document matching the query.CollectionClient.findOneByVector(float[] vector) Find document from its vector.CollectionClient.findPage(SelectQuery query) Find documents matching the query.Find one document matching the query.CollectionClient.findVector(float[] vector, Filter filter, Integer limit) Query builder.CollectionClient.findVector(float[] vector, Integer limit) Query builder.CollectionClient.findVectorPage(float[] vector, Filter filter, Integer limit, String pagingState) Query builder.CollectionClient.findVectorPage(SelectQuery query) find Page.Method parameters in io.stargate.sdk.data with type arguments of type JsonDocumentResultModifier and TypeMethodDescription<DOC> Page<DocumentResult<DOC>> CollectionClient.mapPageJsonResultAsPageResult(Page<JsonDocumentResult> pageJson, DocumentResultMapper<DOC> mapper) Map a page of JsonResult to page result.<DOC> Page<DocumentResult<DOC>> CollectionClient.mapPageJsonResultAsPageResult(Page<JsonDocumentResult> pageJson, Class<DOC> clazz) Map a page of JsonResult to Page of Result -
Uses of JsonDocumentResult in io.stargate.sdk.data.domain.odm
Methods in io.stargate.sdk.data.domain.odm with parameters of type JsonDocumentResultModifier and TypeMethodDescriptionDocumentResultMapper.map(JsonDocumentResult record) Extension point for the user to implement its own parser for a record.static <R> DocumentResult<R> DocumentResult.of(JsonDocumentResult result, Class<R> clazz) Syntax sugar to build a result.Constructors in io.stargate.sdk.data.domain.odm with parameters of type JsonDocumentResultModifierConstructorDescriptionDocumentResult(JsonDocumentResult result) Default constructor.DocumentResult(JsonDocumentResult result, DOC data) Default constructorDocumentResult(JsonDocumentResult result, Class<DOC> clazz) Constructor.