Interface InputTableValidationErrorOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
InputTableValidationError, InputTableValidationError.Builder

@Generated public interface InputTableValidationErrorOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    the column name in the table_to_add that caused this error, not present when unknown
    com.google.protobuf.ByteString
    the column name in the table_to_add that caused this error, not present when unknown
    the error message
    com.google.protobuf.ByteString
    the error message
    long
    the row position in the table_to_add that caused this error, not present when unknown
    boolean
    the column name in the table_to_add that caused this error, not present when unknown
    boolean
    the row position in the table_to_add that caused this error, not present when unknown

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getMessage

      String getMessage()
       the error message
       
      string message = 1;
      Returns:
      The message.
    • getMessageBytes

      com.google.protobuf.ByteString getMessageBytes()
       the error message
       
      string message = 1;
      Returns:
      The bytes for message.
    • hasRow

      boolean hasRow()
       the row position in the table_to_add that caused this error, not present when unknown
       
      optional int64 row = 2;
      Returns:
      Whether the row field is set.
    • getRow

      long getRow()
       the row position in the table_to_add that caused this error, not present when unknown
       
      optional int64 row = 2;
      Returns:
      The row.
    • hasColumn

      boolean hasColumn()
       the column name in the table_to_add that caused this error, not present when unknown
       
      optional string column = 3;
      Returns:
      Whether the column field is set.
    • getColumn

      String getColumn()
       the column name in the table_to_add that caused this error, not present when unknown
       
      optional string column = 3;
      Returns:
      The column.
    • getColumnBytes

      com.google.protobuf.ByteString getColumnBytes()
       the column name in the table_to_add that caused this error, not present when unknown
       
      optional string column = 3;
      Returns:
      The bytes for column.