Interface RowErrorOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RowError,RowError.Builder
public interface RowErrorOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RowError.RowErrorCodegetCode()Structured error reason for a row error.intgetCodeValue()Structured error reason for a row error.longgetIndex()Index of the malformed row in the request.StringgetMessage()Description of the issue encountered when processing the row.com.google.protobuf.ByteStringgetMessageBytes()Description of the issue encountered when processing the row.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getIndex
long getIndex()
Index of the malformed row in the request.
int64 index = 1;- Returns:
- The index.
-
getCodeValue
int getCodeValue()
Structured error reason for a row error.
.google.cloud.bigquery.storage.v1.RowError.RowErrorCode code = 2;- Returns:
- The enum numeric value on the wire for code.
-
getCode
RowError.RowErrorCode getCode()
Structured error reason for a row error.
.google.cloud.bigquery.storage.v1.RowError.RowErrorCode code = 2;- Returns:
- The code.
-
getMessage
String getMessage()
Description of the issue encountered when processing the row.
string message = 3;- Returns:
- The message.
-
getMessageBytes
com.google.protobuf.ByteString getMessageBytes()
Description of the issue encountered when processing the row.
string message = 3;- Returns:
- The bytes for message.
-
-