Interface GraphDebugInfo.FileLineColOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
GraphDebugInfo.FileLineCol, GraphDebugInfo.FileLineCol.Builder
Enclosing class:
GraphDebugInfo

public static interface GraphDebugInfo.FileLineColOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    Source code contained in this file line.
    com.google.protobuf.ByteString
    Source code contained in this file line.
    int
    Col number in the file line.
    int
    File name index, which can be used to retrieve the file name string from `files`.
    Name of function contains the file line.
    com.google.protobuf.ByteString
    Name of function contains the file line.
    int
    Line number in the file.
    boolean
    Source code contained in this file line.
    boolean
    Col number in the file line.
    boolean
    File name index, which can be used to retrieve the file name string from `files`.
    boolean
    Name of function contains the file line.
    boolean
    Line number in the file.

    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

    • hasFileIndex

      boolean hasFileIndex()
       File name index, which can be used to retrieve the file name string from
       `files`. The value should be between 0 and (len(files)-1)
       
      optional int32 file_index = 1;
      Returns:
      Whether the fileIndex field is set.
    • getFileIndex

      int getFileIndex()
       File name index, which can be used to retrieve the file name string from
       `files`. The value should be between 0 and (len(files)-1)
       
      optional int32 file_index = 1;
      Returns:
      The fileIndex.
    • hasLine

      boolean hasLine()
       Line number in the file.
       
      optional int32 line = 2;
      Returns:
      Whether the line field is set.
    • getLine

      int getLine()
       Line number in the file.
       
      optional int32 line = 2;
      Returns:
      The line.
    • hasCol

      boolean hasCol()
       Col number in the file line.
       
      optional int32 col = 3;
      Returns:
      Whether the col field is set.
    • getCol

      int getCol()
       Col number in the file line.
       
      optional int32 col = 3;
      Returns:
      The col.
    • hasFunc

      boolean hasFunc()
       Name of function contains the file line.
       
      optional string func = 4;
      Returns:
      Whether the func field is set.
    • getFunc

      String getFunc()
       Name of function contains the file line.
       
      optional string func = 4;
      Returns:
      The func.
    • getFuncBytes

      com.google.protobuf.ByteString getFuncBytes()
       Name of function contains the file line.
       
      optional string func = 4;
      Returns:
      The bytes for func.
    • hasCode

      boolean hasCode()
       Source code contained in this file line.
       
      optional string code = 5;
      Returns:
      Whether the code field is set.
    • getCode

      String getCode()
       Source code contained in this file line.
       
      optional string code = 5;
      Returns:
      The code.
    • getCodeBytes

      com.google.protobuf.ByteString getCodeBytes()
       Source code contained in this file line.
       
      optional string code = 5;
      Returns:
      The bytes for code.