Interface ErrorLocationOrBuilder

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

    public interface ErrorLocationOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      int getColumn()
      Optional.
      int getLine()
      Optional.
      • 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

      • getLine

        int getLine()
         Optional. If applicable, denotes the line where the error occurred. A zero value
         means that there is no line information.
         
        int32 line = 1 [(.google.api.field_behavior) = OPTIONAL];
        Returns:
        The line.
      • getColumn

        int getColumn()
         Optional. If applicable, denotes the column where the error occurred. A zero value
         means that there is no columns information.
         
        int32 column = 2 [(.google.api.field_behavior) = OPTIONAL];
        Returns:
        The column.