Interface Execution.StackTraceElement.PositionOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Execution.StackTraceElement.Position
,Execution.StackTraceElement.Position.Builder
- Enclosing class:
- Execution.StackTraceElement
public static interface Execution.StackTraceElement.PositionOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getColumn()
The source code column position (of the line) the current instruction was generated from.long
getLength()
The number of bytes of source code making up this stack trace element.long
getLine()
The source code line number the current instruction was generated from.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getLine
long getLine()
The source code line number the current instruction was generated from.
int64 line = 1;
- Returns:
- The line.
-
getColumn
long getColumn()
The source code column position (of the line) the current instruction was generated from.
int64 column = 2;
- Returns:
- The column.
-
getLength
long getLength()
The number of bytes of source code making up this stack trace element.
int64 length = 3;
- Returns:
- The length.
-
-