Package com.linecorp.armeria.common.grpc
Interface StackTraceElementProtoOrBuilder
- All Superinterfaces:
MessageLiteOrBuilder
,MessageOrBuilder
- All Known Implementing Classes:
StackTraceElementProto
,StackTraceElementProto.Builder
public interface StackTraceElementProtoOrBuilder extends MessageOrBuilder
-
Method Summary
Modifier and Type Method Description String
getClassName()
The fully qualified name of the class containing the execution point represented by the stack trace element.ByteString
getClassNameBytes()
The fully qualified name of the class containing the execution point represented by the stack trace element.String
getFileName()
The name of the file containing the execution point represented by the stack trace element, or null if this information is unavailable.ByteString
getFileNameBytes()
The name of the file containing the execution point represented by the stack trace element, or null if this information is unavailable.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.String
getMethodName()
The name of the method containing the execution point represented by the stack trace elementByteString
getMethodNameBytes()
The name of the method containing the execution point represented by the stack trace elementMethods 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.
-