Interface StorageErrorOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StorageError,StorageError.Builder
public interface StorageErrorOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptiongetCode()BigQuery Storage specific error code.intBigQuery Storage specific error code.Name of the failed entity.com.google.protobuf.ByteStringName of the failed entity.Message that describes the error.com.google.protobuf.ByteStringMessage that describes the error.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getCodeValue
int getCodeValue()BigQuery Storage specific error code.
.google.cloud.bigquery.storage.v1beta2.StorageError.StorageErrorCode code = 1;- Returns:
- The enum numeric value on the wire for code.
-
getCode
StorageError.StorageErrorCode getCode()BigQuery Storage specific error code.
.google.cloud.bigquery.storage.v1beta2.StorageError.StorageErrorCode code = 1;- Returns:
- The code.
-
getEntity
String getEntity()Name of the failed entity.
string entity = 2;- Returns:
- The entity.
-
getEntityBytes
com.google.protobuf.ByteString getEntityBytes()Name of the failed entity.
string entity = 2;- Returns:
- The bytes for entity.
-
getErrorMessage
String getErrorMessage()Message that describes the error.
string error_message = 3;- Returns:
- The errorMessage.
-
getErrorMessageBytes
com.google.protobuf.ByteString getErrorMessageBytes()Message that describes the error.
string error_message = 3;- Returns:
- The bytes for errorMessage.
-