Interface ProtoRowsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ProtoRows,ProtoRows.Builder
public interface ProtoRowsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.ByteStringgetSerializedRows(int index)A sequence of rows serialized as a Protocol Buffer.intgetSerializedRowsCount()A sequence of rows serialized as a Protocol Buffer.List<com.google.protobuf.ByteString>getSerializedRowsList()A sequence of rows serialized as a Protocol Buffer.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSerializedRowsList
List<com.google.protobuf.ByteString> getSerializedRowsList()
A sequence of rows serialized as a Protocol Buffer. See https://developers.google.com/protocol-buffers/docs/overview for more information on deserializing this field.
repeated bytes serialized_rows = 1;- Returns:
- A list containing the serializedRows.
-
getSerializedRowsCount
int getSerializedRowsCount()
A sequence of rows serialized as a Protocol Buffer. See https://developers.google.com/protocol-buffers/docs/overview for more information on deserializing this field.
repeated bytes serialized_rows = 1;- Returns:
- The count of serializedRows.
-
getSerializedRows
com.google.protobuf.ByteString getSerializedRows(int index)
A sequence of rows serialized as a Protocol Buffer. See https://developers.google.com/protocol-buffers/docs/overview for more information on deserializing this field.
repeated bytes serialized_rows = 1;- Parameters:
index- The index of the element to return.- Returns:
- The serializedRows at the given index.
-
-