Uses of Enum Class
io.qdrant.client.grpc.Points.WriteOrderingType
-
Uses of Points.WriteOrderingType in io.qdrant.client
Modifier and TypeMethodDescriptionQdrantClient.batchUpdate
(String collectionName, List<Points.PointsUpdateOperation> operations, Points.WriteOrderingType ordering) Performs a batch update operation on a collection.QdrantClient.batchUpdateBlocking
(String collectionName, List<Points.PointsUpdateOperation> operations, Points.WriteOrderingType ordering) Performs a batch update operation on a collection.QdrantClient.clearPayload
(String collectionName, Points.PointsSelector points, Points.WriteOrderingType ordering) Clears the payload associated with the specified collection, points and ordering.QdrantClient.clearPayloadBlocking
(String collectionName, Points.PointsSelector points, Points.WriteOrderingType ordering) Clears the payload associated with the specified collection, points and ordering.QdrantClient.createFieldIndex
(String collectionName, String fieldName, Points.FieldType fieldType, Collections.PayloadIndexParams fieldIndexParams, Points.WriteOrderingType ordering) Creates a field index in the specified collection with the given parameters.QdrantClient.createFieldIndexBlocking
(String collectionName, String fieldName, Points.FieldType fieldType, Collections.PayloadIndexParams fieldIndexParams, Points.WriteOrderingType ordering) Creates a field index in the specified collection with the given parameters.QdrantClient.deleteFieldIndex
(String collectionName, String fieldName, Points.WriteOrderingType ordering) Deletes the field index for a given collection and field name.QdrantClient.deleteFieldIndexBlocking
(String collectionName, String fieldName, Points.WriteOrderingType ordering) Deletes the field index for a given collection and field name.QdrantClient.deletePayload
(String collectionName, Points.PointsSelector points, List<String> keys, Points.WriteOrderingType ordering) Deletes the payload associated with the specified collection, points, keys, and ordering.QdrantClient.deletePayloadBlocking
(String collectionName, Points.PointsSelector points, List<String> keys, Points.WriteOrderingType ordering) Deletes the payload associated with the specified collection, points, keys, and ordering.QdrantClient.deletePoints
(String collectionName, Points.PointsSelector points, Points.WriteOrderingType ordering) Deletes points from a collection.QdrantClient.deletePointsBlocking
(String collectionName, Points.PointsSelector points, Points.WriteOrderingType ordering) Deletes points from a collection.QdrantClient.deleteVectors
(String collectionName, Points.PointsSelector points, Points.VectorsSelector vectors, Points.WriteOrderingType ordering) Deletes vectors from a collection.QdrantClient.deleteVectorsBlocking
(String collectionName, Points.PointsSelector points, Points.VectorsSelector vectors, Points.WriteOrderingType ordering) Deletes vectors from a collection.QdrantClient.overwritePayload
(String collectionName, Points.PointsSelector points, Map<String, JsonWithInt.Value> payload, Points.WriteOrderingType ordering) Overwrites the payload of the specified points in a collection.QdrantClient.overwritePayloadBlocking
(String collectionName, Points.PointsSelector points, Map<String, JsonWithInt.Value> payload, Points.WriteOrderingType ordering) Overwrites the payload of the specified points in a collection.QdrantClient.updateBatchPoints
(String collecionName, Iterable<? extends Points.PointsUpdateOperation> operations, Points.WriteOrderingType ordering) Updates a batch of points in a collection.QdrantClient.updateBatchPointsBlocking
(String collectionName, Iterable<? extends Points.PointsUpdateOperation> operations, Points.WriteOrderingType ordering) Updates a batch of points in a collection.QdrantClient.updateVectors
(String collectionName, Iterable<? extends Points.PointVectors> points, Points.WriteOrderingType ordering) Updates the vectors of points in a collection.QdrantClient.updateVectorsBlocking
(String collectionName, Iterable<? extends Points.PointVectors> points, Points.WriteOrderingType ordering) Updates the vectors of points in a collection.QdrantClient.upsertPoints
(String collectionName, List<Points.PointStruct> points, Points.WriteOrderingType ordering) Upserts the given points into the specified collection.QdrantClient.upsertPointsBatch
(String collectionName, List<Points.PointStruct> points, Points.WriteOrderingType ordering, int chunkSize) Upserts a batch of points in the specified collection.QdrantClient.upsertPointsBatchBlocking
(String collectionName, List<Points.PointStruct> points, Points.WriteOrderingType ordering, int chunkSize) Upserts a batch of points in the specified collection.QdrantClient.upsertPointsBlocking
(String collectionName, List<Points.PointStruct> points, Points.WriteOrderingType ordering) Upserts the given points into the specified collection. -
Uses of Points.WriteOrderingType in io.qdrant.client.grpc
Modifier and TypeMethodDescriptionstatic Points.WriteOrderingType
Points.WriteOrderingType.forNumber
(int value) Points.WriteOrdering.Builder.getType()
Write ordering guaranteesPoints.WriteOrdering.getType()
Write ordering guaranteesPoints.WriteOrderingOrBuilder.getType()
Write ordering guaranteesstatic Points.WriteOrderingType
Points.WriteOrderingType.valueOf
(int value) Deprecated.static Points.WriteOrderingType
Points.WriteOrderingType.valueOf
(com.google.protobuf.Descriptors.EnumValueDescriptor desc) Returns the enum constant of this class with the specified name.static Points.WriteOrderingType
Returns the enum constant of this class with the specified name.static Points.WriteOrderingType[]
Points.WriteOrderingType.values()
Returns an array containing the constants of this enum class, in the order they are declared.Modifier and TypeMethodDescriptionstatic com.google.protobuf.Internal.EnumLiteMap<Points.WriteOrderingType>
Points.WriteOrderingType.internalGetValueMap()
Modifier and TypeMethodDescriptionPoints.WriteOrdering.Builder.setType
(Points.WriteOrderingType value) Write ordering guarantees -
Uses of Points.WriteOrderingType in io.qdrant.client.utils
Modifier and TypeMethodDescriptionstatic Points.WriteOrdering
PointUtil.ordering
(Points.WriteOrderingType orderingType) Creates aPoints.WriteOrdering
with the specified ordering type.