Uses of Class
com.datastax.astra.client.model.FindIterable

Packages that use FindIterable
Package
Description
Entrypoint and core classes for the client.
  • Uses of FindIterable in com.datastax.astra.client

    Modifier and Type
    Method
    Description
    Collection.find()
    Retrieves all documents in the collection.
    Collection.find(float[] vector, int limit)
    Finds documents in the collection that match the specified filter and sorts them based on their similarity to a provided vector, limiting the number of results returned.
    Collection.find(Filter filter)
    Retrieves documents in the collection that match the specified filter.
    Collection.find(Filter filter, float[] vector, int limit)
    Finds documents in the collection that match the specified filter and sorts them based on their similarity to a provided vector, limiting the number of results returned.
    Collection.find(Filter filter, FindOptions options)
    Finds all documents in the collection.
    Collection.find(Filter filter, String vectorize, int limit)
    Finds documents in the collection that match the specified filter and sorts them based on their similarity to a provided vector, limiting the number of results returned.
    Collection.find(FindOptions options)
    Finds all documents in the collection, applying the specified find options.