Package com.linecorp.armeria.common.grpc
Interface StackTraceElementProtoOrBuilder
- All Superinterfaces:
MessageLiteOrBuilder
,MessageOrBuilder
- All Known Implementing Classes:
StackTraceElementProto
,StackTraceElementProto.Builder
-
Method Summary
Modifier and TypeMethodDescriptionThe fully qualified name of the class containing the execution point represented by the stack trace element.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.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 elementThe name of the method containing the execution point represented by the stack trace elementMethods 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
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.
-