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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      StorageError.StorageErrorCode getCode()
      BigQuery Storage specific error code.
      int getCodeValue()
      BigQuery Storage specific error code.
      String getEntity()
      Name of the failed entity.
      com.google.protobuf.ByteString getEntityBytes()
      Name of the failed entity.
      String getErrorMessage()
      Message that describes the error.
      com.google.protobuf.ByteString getErrorMessageBytes()
      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 Detail

      • 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.