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 Type
    Method
    Description
    BigQuery Storage specific error code.
    int
    BigQuery Storage specific error code.
    Name of the failed entity.
    com.google.protobuf.ByteString
    Name of the failed entity.
    Message that describes the error.
    com.google.protobuf.ByteString
    Message that describes the error.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods 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

       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.