Uses of Class
io.qdrant.client.grpc.Points.PointStruct
-
Uses of Points.PointStruct in io.qdrant.client
Modifier and TypeMethodDescriptionQdrantClient.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.PointStruct in io.qdrant.client.grpc
Modifier and TypeMethodDescriptionPoints.PointStruct.Builder.build()
Points.PointStruct.Builder.buildPartial()
static Points.PointStruct
Points.PointStruct.getDefaultInstance()
Points.PointStruct.Builder.getDefaultInstanceForType()
Points.PointStruct.getDefaultInstanceForType()
Points.PointsUpdateOperation.PointStructList.Builder.getPoints
(int index) repeated .qdrant.PointStruct points = 1;
Points.PointsUpdateOperation.PointStructList.getPoints
(int index) repeated .qdrant.PointStruct points = 1;
Points.PointsUpdateOperation.PointStructListOrBuilder.getPoints
(int index) repeated .qdrant.PointStruct points = 1;
Points.UpsertPoints.Builder.getPoints
(int index) repeated .qdrant.PointStruct points = 3;
Points.UpsertPoints.getPoints
(int index) repeated .qdrant.PointStruct points = 3;
Points.UpsertPointsOrBuilder.getPoints
(int index) repeated .qdrant.PointStruct points = 3;
static Points.PointStruct
Points.PointStruct.parseDelimitedFrom
(InputStream input) static Points.PointStruct
Points.PointStruct.parseDelimitedFrom
(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) static Points.PointStruct
Points.PointStruct.parseFrom
(byte[] data) static Points.PointStruct
Points.PointStruct.parseFrom
(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) static Points.PointStruct
Points.PointStruct.parseFrom
(com.google.protobuf.ByteString data) static Points.PointStruct
Points.PointStruct.parseFrom
(com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) static Points.PointStruct
Points.PointStruct.parseFrom
(com.google.protobuf.CodedInputStream input) static Points.PointStruct
Points.PointStruct.parseFrom
(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) static Points.PointStruct
Points.PointStruct.parseFrom
(InputStream input) static Points.PointStruct
Points.PointStruct.parseFrom
(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) static Points.PointStruct
Points.PointStruct.parseFrom
(ByteBuffer data) static Points.PointStruct
Points.PointStruct.parseFrom
(ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) Modifier and TypeMethodDescriptioncom.google.protobuf.Parser<Points.PointStruct>
Points.PointStruct.getParserForType()
Points.PointsUpdateOperation.PointStructList.Builder.getPointsList()
repeated .qdrant.PointStruct points = 1;
Points.PointsUpdateOperation.PointStructList.getPointsList()
repeated .qdrant.PointStruct points = 1;
Points.PointsUpdateOperation.PointStructListOrBuilder.getPointsList()
repeated .qdrant.PointStruct points = 1;
Points.UpsertPoints.Builder.getPointsList()
repeated .qdrant.PointStruct points = 3;
Points.UpsertPoints.getPointsList()
repeated .qdrant.PointStruct points = 3;
Points.UpsertPointsOrBuilder.getPointsList()
repeated .qdrant.PointStruct points = 3;
static com.google.protobuf.Parser<Points.PointStruct>
Points.PointStruct.parser()
Modifier and TypeMethodDescriptionPoints.PointsUpdateOperation.PointStructList.Builder.addPoints
(int index, Points.PointStruct value) repeated .qdrant.PointStruct points = 1;
Points.PointsUpdateOperation.PointStructList.Builder.addPoints
(Points.PointStruct value) repeated .qdrant.PointStruct points = 1;
Points.UpsertPoints.Builder.addPoints
(int index, Points.PointStruct value) repeated .qdrant.PointStruct points = 3;
Points.UpsertPoints.Builder.addPoints
(Points.PointStruct value) repeated .qdrant.PointStruct points = 3;
Points.PointStruct.Builder.mergeFrom
(Points.PointStruct other) static Points.PointStruct.Builder
Points.PointStruct.newBuilder
(Points.PointStruct prototype) Points.PointsUpdateOperation.PointStructList.Builder.setPoints
(int index, Points.PointStruct value) repeated .qdrant.PointStruct points = 1;
Points.UpsertPoints.Builder.setPoints
(int index, Points.PointStruct value) repeated .qdrant.PointStruct points = 3;
Modifier and TypeMethodDescriptionPoints.PointsUpdateOperation.PointStructList.Builder.addAllPoints
(Iterable<? extends Points.PointStruct> values) repeated .qdrant.PointStruct points = 1;
Points.UpsertPoints.Builder.addAllPoints
(Iterable<? extends Points.PointStruct> values) repeated .qdrant.PointStruct points = 3;
-
Uses of Points.PointStruct in io.qdrant.client.utils
Modifier and TypeMethodDescriptionstatic Points.PointStruct
PointUtil.namedPoint
(Points.PointId id, String vectorName, float[] vectorData, Map<String, JsonWithInt.Value> payload) Creates a namedPoints.PointStruct
with aPoints.PointId
, vector name, vector data, and payload data.static Points.PointStruct
PointUtil.namedPoint
(Long id, String vectorName, float[] vectorData, Map<String, JsonWithInt.Value> payload) Creates a namedPoints.PointStruct
with a long ID, vector name, vector data, and payload data.static Points.PointStruct
PointUtil.point
(long id, Points.Vector vector, Map<String, JsonWithInt.Value> payload) Creates aPoints.PointStruct
with a long ID, aPoints.Vector
, and payload data.static Points.PointStruct
PointUtil.point
(Points.PointId id, Points.Vector vector, Map<String, JsonWithInt.Value> payload) static Points.PointStruct
PointUtil.point
(String uuid, Points.Vector vector, Map<String, JsonWithInt.Value> payload) Creates aPoints.PointStruct
with a UUID string, aPoints.Vector
, and payload data.static Points.PointStruct
PointUtil.point
(UUID uuid, Points.Vector vector, Map<String, JsonWithInt.Value> payload) Creates aPoints.PointStruct
with a UUID, aPoints.Vector
, and payload data.