Interface GraphDebugInfo.FileLineColOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getCode()
      Source code contained in this file line.
      com.google.protobuf.ByteString getCodeBytes()
      Source code contained in this file line.
      int getCol()
      Col number in the file line.
      int getFileIndex()
      File name index, which can be used to retrieve the file name string from `files`.
      java.lang.String getFunc()
      Name of function contains the file line.
      com.google.protobuf.ByteString getFuncBytes()
      Name of function contains the file line.
      int getLine()
      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 Detail

      • 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)
         
        int32 file_index = 1;
        Returns:
        The fileIndex.
      • getLine

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

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

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

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

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

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