/*
 * Copyright 2020 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

package com.google.cloud.automl.v1beta1;

public interface RowOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.cloud.automl.v1beta1.Row)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * <pre>
   * 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.
   * </pre>
   *
   * <code>repeated string column_spec_ids = 2;</code>
   *
   * @return A list containing the columnSpecIds.
   */
  java.util.List<java.lang.String> getColumnSpecIdsList();
  /**
   *
   *
   * <pre>
   * 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.
   * </pre>
   *
   * <code>repeated string column_spec_ids = 2;</code>
   *
   * @return The count of columnSpecIds.
   */
  int getColumnSpecIdsCount();
  /**
   *
   *
   * <pre>
   * 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.
   * </pre>
   *
   * <code>repeated string column_spec_ids = 2;</code>
   *
   * @param index The index of the element to return.
   * @return The columnSpecIds at the given index.
   */
  java.lang.String getColumnSpecIds(int index);
  /**
   *
   *
   * <pre>
   * 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.
   * </pre>
   *
   * <code>repeated string column_spec_ids = 2;</code>
   *
   * @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);

  /**
   *
   *
   * <pre>
   * 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.
   * </pre>
   *
   * <code>repeated .google.protobuf.Value values = 3;</code>
   */
  java.util.List<com.google.protobuf.Value> getValuesList();
  /**
   *
   *
   * <pre>
   * 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.
   * </pre>
   *
   * <code>repeated .google.protobuf.Value values = 3;</code>
   */
  com.google.protobuf.Value getValues(int index);
  /**
   *
   *
   * <pre>
   * 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.
   * </pre>
   *
   * <code>repeated .google.protobuf.Value values = 3;</code>
   */
  int getValuesCount();
  /**
   *
   *
   * <pre>
   * 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.
   * </pre>
   *
   * <code>repeated .google.protobuf.Value values = 3;</code>
   */
  java.util.List<? extends com.google.protobuf.ValueOrBuilder> getValuesOrBuilderList();
  /**
   *
   *
   * <pre>
   * 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.
   * </pre>
   *
   * <code>repeated .google.protobuf.Value values = 3;</code>
   */
  com.google.protobuf.ValueOrBuilder getValuesOrBuilder(int index);
}
