Interface CodeLocationOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getHostName()
      Host name on which the source files are located.
      com.google.protobuf.ByteString getHostNameBytes()
      Host name on which the source files are located.
      java.lang.String getStackFrameIds​(int index)
      ID to a stack frame, each of which is pointed to by a unique ID.
      com.google.protobuf.ByteString getStackFrameIdsBytes​(int index)
      ID to a stack frame, each of which is pointed to by a unique ID.
      int getStackFrameIdsCount()
      ID to a stack frame, each of which is pointed to by a unique ID.
      java.util.List<java.lang.String> getStackFrameIdsList()
      ID to a stack frame, each of which is pointed to by a unique ID.
      • 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

      • getHostName

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

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

        java.util.List<java.lang.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

        java.lang.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

        com.google.protobuf.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.