Interface StackTraceElementProtoOrBuilder

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

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

    Modifier and Type
    Method
    Description
    The fully qualified name of the class containing the execution point represented by the stack trace element.
    com.google.protobuf.ByteString
    The fully qualified name of the class containing the execution point represented by the stack trace element.
    The name of the file containing the execution point represented by the stack trace element, or null if this information is unavailable.
    com.google.protobuf.ByteString
    The name of the file containing the execution point represented by the stack trace element, or null if this information is unavailable.
    int
    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.
    The name of the method containing the execution point represented by the stack trace element
    com.google.protobuf.ByteString
    The name of the method containing the execution point represented by the stack trace element

    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

    • 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

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

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

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