Package com.google.rpc
Interface DebugInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DebugInfo,DebugInfo.Builder
public interface DebugInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDetail()Additional debugging information provided by the server.com.google.protobuf.ByteStringgetDetailBytes()Additional debugging information provided by the server.StringgetStackEntries(int index)The stack trace entries indicating where the error occurred.com.google.protobuf.ByteStringgetStackEntriesBytes(int index)The stack trace entries indicating where the error occurred.intgetStackEntriesCount()The stack trace entries indicating where the error occurred.List<String>getStackEntriesList()The stack trace entries indicating where the error occurred.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getStackEntriesList
List<String> getStackEntriesList()
The stack trace entries indicating where the error occurred.
repeated string stack_entries = 1;- Returns:
- A list containing the stackEntries.
-
getStackEntriesCount
int getStackEntriesCount()
The stack trace entries indicating where the error occurred.
repeated string stack_entries = 1;- Returns:
- The count of stackEntries.
-
getStackEntries
String getStackEntries(int index)
The stack trace entries indicating where the error occurred.
repeated string stack_entries = 1;- Parameters:
index- The index of the element to return.- Returns:
- The stackEntries at the given index.
-
getStackEntriesBytes
com.google.protobuf.ByteString getStackEntriesBytes(int index)
The stack trace entries indicating where the error occurred.
repeated string stack_entries = 1;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the stackEntries at the given index.
-
getDetail
String getDetail()
Additional debugging information provided by the server.
string detail = 2;- Returns:
- The detail.
-
getDetailBytes
com.google.protobuf.ByteString getDetailBytes()
Additional debugging information provided by the server.
string detail = 2;- Returns:
- The bytes for detail.
-
-