Package com.google.cloud.automl.v1beta1
Interface RowOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Row
,Row.Builder
public interface RowOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getColumnSpecIds(int index)
The resource IDs of the column specs describing the columns of the row.com.google.protobuf.ByteString
getColumnSpecIdsBytes(int index)
The resource IDs of the column specs describing the columns of the row.int
getColumnSpecIdsCount()
The resource IDs of the column specs describing the columns of the row.List<String>
getColumnSpecIdsList()
The resource IDs of the column specs describing the columns of the row.com.google.protobuf.Value
getValues(int index)
Required.int
getValuesCount()
Required.List<com.google.protobuf.Value>
getValuesList()
Required.com.google.protobuf.ValueOrBuilder
getValuesOrBuilder(int index)
Required.List<? extends com.google.protobuf.ValueOrBuilder>
getValuesOrBuilderList()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getColumnSpecIdsList
List<String> 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;
- Returns:
- A list containing the columnSpecIds.
-
getColumnSpecIdsCount
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;
- Returns:
- The count of columnSpecIds.
-
getColumnSpecIds
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;
- Parameters:
index
- The index of the element to return.- Returns:
- The columnSpecIds at the given index.
-
getColumnSpecIdsBytes
com.google.protobuf.ByteString getColumnSpecIdsBytes(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;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the columnSpecIds at the given index.
-
getValuesList
List<com.google.protobuf.Value> 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;
-
getValues
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;
-
getValuesCount
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;
-
getValuesOrBuilderList
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;
-
getValuesOrBuilder
com.google.protobuf.ValueOrBuilder getValuesOrBuilder(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;
-
-