Interface CodeLocationOrBuilder

All Superinterfaces:
MessageLiteOrBuilder, MessageOrBuilder
All Known Implementing Classes:
CodeLocation, CodeLocation.Builder

public interface CodeLocationOrBuilder extends MessageOrBuilder
  • Method Details

    • getHostName

      String getHostName()
      Host name on which the source files are located.
      
      string host_name = 1;
      Returns:
      The hostName.
    • getHostNameBytes

      ByteString getHostNameBytes()
      Host name on which the source files are located.
      
      string host_name = 1;
      Returns:
      The bytes for hostName.
    • getStackFrameIdsList

      List<String> getStackFrameIdsList()
      ID to a stack frame, each of which is pointed to
      by a unique ID. The ordering of the frames is consistent with Python's
      `traceback.extract_tb()`.
      
      repeated string stack_frame_ids = 2;
      Returns:
      A list containing the stackFrameIds.
    • getStackFrameIdsCount

      int getStackFrameIdsCount()
      ID to a stack frame, each of which is pointed to
      by a unique ID. The ordering of the frames is consistent with Python's
      `traceback.extract_tb()`.
      
      repeated string stack_frame_ids = 2;
      Returns:
      The count of stackFrameIds.
    • getStackFrameIds

      String getStackFrameIds(int index)
      ID to a stack frame, each of which is pointed to
      by a unique ID. The ordering of the frames is consistent with Python's
      `traceback.extract_tb()`.
      
      repeated string stack_frame_ids = 2;
      Parameters:
      index - The index of the element to return.
      Returns:
      The stackFrameIds at the given index.
    • getStackFrameIdsBytes

      ByteString getStackFrameIdsBytes(int index)
      ID to a stack frame, each of which is pointed to
      by a unique ID. The ordering of the frames is consistent with Python's
      `traceback.extract_tb()`.
      
      repeated string stack_frame_ids = 2;
      Parameters:
      index - The index of the value to return.
      Returns:
      The bytes of the stackFrameIds at the given index.