Package io.temporal.api.sdk.v1
Interface StackTraceFileSliceOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StackTraceFileSlice,StackTraceFileSlice.Builder
@Generated(value="protoc", comments="annotations:StackTraceFileSliceOrBuilder.java.pb.meta") public interface StackTraceFileSliceOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetContent()Slice of a file with the respective OS-specific line terminator.com.google.protobuf.ByteStringgetContentBytes()Slice of a file with the respective OS-specific line terminator.intgetLineOffset()Only used (possibly) to trim the file without breaking syntax highlighting.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getLineOffset
int getLineOffset()
Only used (possibly) to trim the file without breaking syntax highlighting. This is not optional, unlike the `line` property of a `StackTraceFileLocation`. (-- api-linter: core::0141::forbidden-types=disabled aip.dev/not-precedent: These really shouldn't have negative values. --)uint32 line_offset = 1;- Returns:
- The lineOffset.
-
getContent
java.lang.String getContent()
Slice of a file with the respective OS-specific line terminator.
string content = 2;- Returns:
- The content.
-
getContentBytes
com.google.protobuf.ByteString getContentBytes()
Slice of a file with the respective OS-specific line terminator.
string content = 2;- Returns:
- The bytes for content.
-
-