Interface Points.ScoredPointOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
Points.ScoredPoint, Points.ScoredPoint.Builder
Enclosing class:
Points

public static interface Points.ScoredPointOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Details

    • hasId

      boolean hasId()
       Point id
       
      .qdrant.PointId id = 1;
      Returns:
      Whether the id field is set.
    • getId

       Point id
       
      .qdrant.PointId id = 1;
      Returns:
      The id.
    • getIdOrBuilder

      Points.PointIdOrBuilder getIdOrBuilder()
       Point id
       
      .qdrant.PointId id = 1;
    • getPayloadCount

      int getPayloadCount()
       Payload
       
      map<string, .qdrant.Value> payload = 2;
    • containsPayload

      boolean containsPayload(String key)
       Payload
       
      map<string, .qdrant.Value> payload = 2;
    • getPayload

      Deprecated.
      Use getPayloadMap() instead.
    • getPayloadMap

      Map<String,JsonWithInt.Value> getPayloadMap()
       Payload
       
      map<string, .qdrant.Value> payload = 2;
    • getPayloadOrDefault

      JsonWithInt.Value getPayloadOrDefault(String key, JsonWithInt.Value defaultValue)
       Payload
       
      map<string, .qdrant.Value> payload = 2;
    • getPayloadOrThrow

      JsonWithInt.Value getPayloadOrThrow(String key)
       Payload
       
      map<string, .qdrant.Value> payload = 2;
    • getScore

      float getScore()
       Similarity score
       
      float score = 3;
      Returns:
      The score.
    • getVersion

      long getVersion()
       Last update operation applied to this point
       
      uint64 version = 5;
      Returns:
      The version.
    • hasVectors

      boolean hasVectors()
       Vectors to search
       
      optional .qdrant.Vectors vectors = 6;
      Returns:
      Whether the vectors field is set.
    • getVectors

      Points.Vectors getVectors()
       Vectors to search
       
      optional .qdrant.Vectors vectors = 6;
      Returns:
      The vectors.
    • getVectorsOrBuilder

      Points.VectorsOrBuilder getVectorsOrBuilder()
       Vectors to search
       
      optional .qdrant.Vectors vectors = 6;