Package com.google.cloud.channel.v1
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 StringgetPartitionKey()The key for the partition this row belongs to.com.google.protobuf.ByteStringgetPartitionKeyBytes()The key for the partition this row belongs to.ReportValuegetValues(int index)The list of values in the row.intgetValuesCount()The list of values in the row.List<ReportValue>getValuesList()The list of values in the row.ReportValueOrBuildergetValuesOrBuilder(int index)The list of values in the row.List<? extends ReportValueOrBuilder>getValuesOrBuilderList()The list of values in the row.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getValuesList
List<ReportValue> getValuesList()
The list of values in the row.
repeated .google.cloud.channel.v1.ReportValue values = 1;
-
getValues
ReportValue getValues(int index)
The list of values in the row.
repeated .google.cloud.channel.v1.ReportValue values = 1;
-
getValuesCount
int getValuesCount()
The list of values in the row.
repeated .google.cloud.channel.v1.ReportValue values = 1;
-
getValuesOrBuilderList
List<? extends ReportValueOrBuilder> getValuesOrBuilderList()
The list of values in the row.
repeated .google.cloud.channel.v1.ReportValue values = 1;
-
getValuesOrBuilder
ReportValueOrBuilder getValuesOrBuilder(int index)
The list of values in the row.
repeated .google.cloud.channel.v1.ReportValue values = 1;
-
getPartitionKey
String getPartitionKey()
The key for the partition this row belongs to. This field is empty if the report is not partitioned.
string partition_key = 2;- Returns:
- The partitionKey.
-
getPartitionKeyBytes
com.google.protobuf.ByteString getPartitionKeyBytes()
The key for the partition this row belongs to. This field is empty if the report is not partitioned.
string partition_key = 2;- Returns:
- The bytes for partitionKey.
-
-