Interface StackTraceElementProtoOrBuilder

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

public interface StackTraceElementProtoOrBuilder
extends MessageOrBuilder
  • Method Details

    • getClassName

      String getClassName()
       The fully qualified name of the class containing the execution point
       represented by the stack trace element.
       
      string class_name = 1;
      Returns:
      The className.
    • getClassNameBytes

      ByteString getClassNameBytes()
       The fully qualified name of the class containing the execution point
       represented by the stack trace element.
       
      string class_name = 1;
      Returns:
      The bytes for className.
    • getMethodName

      String getMethodName()
       The name of the method containing the execution point represented by the
       stack trace element
       
      string method_name = 2;
      Returns:
      The methodName.
    • getMethodNameBytes

      ByteString getMethodNameBytes()
       The name of the method containing the execution point represented by the
       stack trace element
       
      string method_name = 2;
      Returns:
      The bytes for methodName.
    • getFileName

      String getFileName()
       The name of the file containing the execution point represented by the
       stack trace element, or null if this information is unavailable.
       
      string file_name = 3;
      Returns:
      The fileName.
    • getFileNameBytes

      ByteString getFileNameBytes()
       The name of the file containing the execution point represented by the
       stack trace element, or null if this information is unavailable.
       
      string file_name = 3;
      Returns:
      The bytes for fileName.
    • getLineNumber

      int getLineNumber()
       The line number of the source line containing the execution point represented
       by this stack trace element, or a negative number if this information is
       unavailable.
       
      int32 line_number = 4;
      Returns:
      The lineNumber.