com.google.cloud.automl.v1beta1.RowOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-automl-v1beta1 Show documentation
Show all versions of proto-google-cloud-automl-v1beta1 Show documentation
PROTO library for proto-google-cloud-automl-v1beta1
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/automl/v1beta1/data_items.proto
// Protobuf Java Version: 3.25.5
package com.google.cloud.automl.v1beta1;
public interface RowOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.automl.v1beta1.Row)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The resource IDs of the column specs describing the columns of the row.
* If set must contain, but possibly in a different order, all input
* feature
*
* [column_spec_ids][google.cloud.automl.v1beta1.TablesModelMetadata.input_feature_column_specs]
* of the Model this row is being passed to.
* Note: The below `values` field must match order of this field, if this
* field is set.
*
*
* repeated string column_spec_ids = 2;
*
* @return A list containing the columnSpecIds.
*/
java.util.List getColumnSpecIdsList();
/**
*
*
*
* The resource IDs of the column specs describing the columns of the row.
* If set must contain, but possibly in a different order, all input
* feature
*
* [column_spec_ids][google.cloud.automl.v1beta1.TablesModelMetadata.input_feature_column_specs]
* of the Model this row is being passed to.
* Note: The below `values` field must match order of this field, if this
* field is set.
*
*
* repeated string column_spec_ids = 2;
*
* @return The count of columnSpecIds.
*/
int getColumnSpecIdsCount();
/**
*
*
*
* The resource IDs of the column specs describing the columns of the row.
* If set must contain, but possibly in a different order, all input
* feature
*
* [column_spec_ids][google.cloud.automl.v1beta1.TablesModelMetadata.input_feature_column_specs]
* of the Model this row is being passed to.
* Note: The below `values` field must match order of this field, if this
* field is set.
*
*
* repeated string column_spec_ids = 2;
*
* @param index The index of the element to return.
* @return The columnSpecIds at the given index.
*/
java.lang.String getColumnSpecIds(int index);
/**
*
*
*
* The resource IDs of the column specs describing the columns of the row.
* If set must contain, but possibly in a different order, all input
* feature
*
* [column_spec_ids][google.cloud.automl.v1beta1.TablesModelMetadata.input_feature_column_specs]
* of the Model this row is being passed to.
* Note: The below `values` field must match order of this field, if this
* field is set.
*
*
* repeated string column_spec_ids = 2;
*
* @param index The index of the value to return.
* @return The bytes of the columnSpecIds at the given index.
*/
com.google.protobuf.ByteString getColumnSpecIdsBytes(int index);
/**
*
*
*
* Required. The values of the row cells, given in the same order as the
* column_spec_ids, or, if not set, then in the same order as input
* feature
*
* [column_specs][google.cloud.automl.v1beta1.TablesModelMetadata.input_feature_column_specs]
* of the Model this row is being passed to.
*
*
* repeated .google.protobuf.Value values = 3;
*/
java.util.List getValuesList();
/**
*
*
*
* Required. The values of the row cells, given in the same order as the
* column_spec_ids, or, if not set, then in the same order as input
* feature
*
* [column_specs][google.cloud.automl.v1beta1.TablesModelMetadata.input_feature_column_specs]
* of the Model this row is being passed to.
*
*
* repeated .google.protobuf.Value values = 3;
*/
com.google.protobuf.Value getValues(int index);
/**
*
*
*
* Required. The values of the row cells, given in the same order as the
* column_spec_ids, or, if not set, then in the same order as input
* feature
*
* [column_specs][google.cloud.automl.v1beta1.TablesModelMetadata.input_feature_column_specs]
* of the Model this row is being passed to.
*
*
* repeated .google.protobuf.Value values = 3;
*/
int getValuesCount();
/**
*
*
*
* Required. The values of the row cells, given in the same order as the
* column_spec_ids, or, if not set, then in the same order as input
* feature
*
* [column_specs][google.cloud.automl.v1beta1.TablesModelMetadata.input_feature_column_specs]
* of the Model this row is being passed to.
*
*
* repeated .google.protobuf.Value values = 3;
*/
java.util.List extends com.google.protobuf.ValueOrBuilder> getValuesOrBuilderList();
/**
*
*
*
* Required. The values of the row cells, given in the same order as the
* column_spec_ids, or, if not set, then in the same order as input
* feature
*
* [column_specs][google.cloud.automl.v1beta1.TablesModelMetadata.input_feature_column_specs]
* of the Model this row is being passed to.
*
*
* repeated .google.protobuf.Value values = 3;
*/
com.google.protobuf.ValueOrBuilder getValuesOrBuilder(int index);
}