Interface CodeLocationOrBuilder
- All Superinterfaces:
MessageLiteOrBuilder, MessageOrBuilder
- All Known Implementing Classes:
CodeLocation, CodeLocation.Builder
-
Method Summary
Modifier and TypeMethodDescriptionHost name on which the source files are located.Host name on which the source files are located.getStackFrameIds(int index) ID to a stack frame, each of which is pointed to by a unique ID.getStackFrameIdsBytes(int index) ID to a stack frame, each of which is pointed to by a unique ID.intID to a stack frame, each of which is pointed to by a unique ID.ID to a stack frame, each of which is pointed to by a unique ID.Methods inherited from interface MessageLiteOrBuilder
isInitialized
-
Method Details
-
getHostName
String getHostName()Host name on which the source files are located.
string host_name = 1;- Returns:
- The hostName.
-
getHostNameBytes
ByteString getHostNameBytes()Host name on which the source files are located.
string host_name = 1;- Returns:
- The bytes for hostName.
-
getStackFrameIdsList
-
getStackFrameIdsCount
int getStackFrameIdsCount()ID to a stack frame, each of which is pointed to by a unique ID. The ordering of the frames is consistent with Python's `traceback.extract_tb()`.
repeated string stack_frame_ids = 2;- Returns:
- The count of stackFrameIds.
-
getStackFrameIds
ID to a stack frame, each of which is pointed to by a unique ID. The ordering of the frames is consistent with Python's `traceback.extract_tb()`.
repeated string stack_frame_ids = 2;- Parameters:
index- The index of the element to return.- Returns:
- The stackFrameIds at the given index.
-
getStackFrameIdsBytes
ID to a stack frame, each of which is pointed to by a unique ID. The ordering of the frames is consistent with Python's `traceback.extract_tb()`.
repeated string stack_frame_ids = 2;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the stackFrameIds at the given index.
-