Interface VectorsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
VectorsResponse,VectorsResponse.Builder
public interface VectorsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.StructgetExtras()Implementation-specific information can be encoded herecom.google.protobuf.StructOrBuildergetExtrasOrBuilder()Implementation-specific information can be encoded hereVectorResponsegetVectors(int index)List of vectors whose order corresponds to the one of `texts`.intgetVectorsCount()List of vectors whose order corresponds to the one of `texts`.java.util.List<VectorResponse>getVectorsList()List of vectors whose order corresponds to the one of `texts`.VectorResponseOrBuildergetVectorsOrBuilder(int index)List of vectors whose order corresponds to the one of `texts`.java.util.List<? extends VectorResponseOrBuilder>getVectorsOrBuilderList()List of vectors whose order corresponds to the one of `texts`.booleanhasExtras()Implementation-specific information can be encoded here-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getVectorsList
java.util.List<VectorResponse> getVectorsList()
List of vectors whose order corresponds to the one of `texts`.
repeated .arg_services.nlp.v1.VectorResponse vectors = 1 [json_name = "vectors"];
-
getVectors
VectorResponse getVectors(int index)
List of vectors whose order corresponds to the one of `texts`.
repeated .arg_services.nlp.v1.VectorResponse vectors = 1 [json_name = "vectors"];
-
getVectorsCount
int getVectorsCount()
List of vectors whose order corresponds to the one of `texts`.
repeated .arg_services.nlp.v1.VectorResponse vectors = 1 [json_name = "vectors"];
-
getVectorsOrBuilderList
java.util.List<? extends VectorResponseOrBuilder> getVectorsOrBuilderList()
List of vectors whose order corresponds to the one of `texts`.
repeated .arg_services.nlp.v1.VectorResponse vectors = 1 [json_name = "vectors"];
-
getVectorsOrBuilder
VectorResponseOrBuilder getVectorsOrBuilder(int index)
List of vectors whose order corresponds to the one of `texts`.
repeated .arg_services.nlp.v1.VectorResponse vectors = 1 [json_name = "vectors"];
-
hasExtras
boolean hasExtras()
Implementation-specific information can be encoded here
.google.protobuf.Struct extras = 15 [json_name = "extras"];- Returns:
- Whether the extras field is set.
-
getExtras
com.google.protobuf.Struct getExtras()
Implementation-specific information can be encoded here
.google.protobuf.Struct extras = 15 [json_name = "extras"];- Returns:
- The extras.
-
getExtrasOrBuilder
com.google.protobuf.StructOrBuilder getExtrasOrBuilder()
Implementation-specific information can be encoded here
.google.protobuf.Struct extras = 15 [json_name = "extras"];
-
-