Package io.temporal.api.sdk.v1
Interface StackTraceFileLocationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StackTraceFileLocation,StackTraceFileLocation.Builder
@Generated(value="protoc", comments="annotations:StackTraceFileLocationOrBuilder.java.pb.meta") public interface StackTraceFileLocationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetColumn()Optional; if possible, SDK should send this.java.lang.StringgetFilePath()Path to source file (absolute or relative).com.google.protobuf.ByteStringgetFilePathBytes()Path to source file (absolute or relative).java.lang.StringgetFunctionName()Function name this line belongs to, if applicable.com.google.protobuf.ByteStringgetFunctionNameBytes()Function name this line belongs to, if applicable.booleangetInternalCode()Flag to communicate whether a location should be hidden by default in the stack view.intgetLine()Optional; If possible, SDK should send this -- this is required for displaying the code location.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getFilePath
java.lang.String getFilePath()
Path to source file (absolute or relative). If the paths are relative, ensure that they are all relative to the same root.
string file_path = 1;- Returns:
- The filePath.
-
getFilePathBytes
com.google.protobuf.ByteString getFilePathBytes()
Path to source file (absolute or relative). If the paths are relative, ensure that they are all relative to the same root.
string file_path = 1;- Returns:
- The bytes for filePath.
-
getLine
int getLine()
Optional; If possible, SDK should send this -- this is required for displaying the code location. If not provided, set to -1.
int32 line = 2;- Returns:
- The line.
-
getColumn
int getColumn()
Optional; if possible, SDK should send this. If not provided, set to -1.
int32 column = 3;- Returns:
- The column.
-
getFunctionName
java.lang.String getFunctionName()
Function name this line belongs to, if applicable. Used for falling back to stack trace view.
string function_name = 4;- Returns:
- The functionName.
-
getFunctionNameBytes
com.google.protobuf.ByteString getFunctionNameBytes()
Function name this line belongs to, if applicable. Used for falling back to stack trace view.
string function_name = 4;- Returns:
- The bytes for functionName.
-
getInternalCode
boolean getInternalCode()
Flag to communicate whether a location should be hidden by default in the stack view.
bool internal_code = 5;- Returns:
- The internalCode.
-
-