Interface PlaceholderValueOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
PlaceholderValue, PlaceholderValue.Builder

public interface PlaceholderValueOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    string tag = 1;
    com.google.protobuf.ByteString
    string tag = 1;
    .milvus.proto.common.PlaceholderType type = 2;
    int
    .milvus.proto.common.PlaceholderType type = 2;
    com.google.protobuf.ByteString
    getValues(int index)
    values is a 2d-array, every array contains a vector
    int
    values is a 2d-array, every array contains a vector
    List<com.google.protobuf.ByteString>
    values is a 2d-array, every array contains a vector

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getTag

      String getTag()
      string tag = 1;
      Returns:
      The tag.
    • getTagBytes

      com.google.protobuf.ByteString getTagBytes()
      string tag = 1;
      Returns:
      The bytes for tag.
    • getTypeValue

      int getTypeValue()
      .milvus.proto.common.PlaceholderType type = 2;
      Returns:
      The enum numeric value on the wire for type.
    • getType

      PlaceholderType getType()
      .milvus.proto.common.PlaceholderType type = 2;
      Returns:
      The type.
    • getValuesList

      List<com.google.protobuf.ByteString> getValuesList()
       values is a 2d-array, every array contains a vector
       
      repeated bytes values = 3;
      Returns:
      A list containing the values.
    • getValuesCount

      int getValuesCount()
       values is a 2d-array, every array contains a vector
       
      repeated bytes values = 3;
      Returns:
      The count of values.
    • getValues

      com.google.protobuf.ByteString getValues(int index)
       values is a 2d-array, every array contains a vector
       
      repeated bytes values = 3;
      Parameters:
      index - The index of the element to return.
      Returns:
      The values at the given index.