Interface FailureDetails.ThrowableOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FailureDetails.Throwable,FailureDetails.Throwable.Builder
- Enclosing class:
- FailureDetails
public static interface FailureDetails.ThrowableOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetMessage()The throwable's message.com.google.protobuf.ByteStringgetMessageBytes()The throwable's message.java.lang.StringgetStackTrace(int index)The result of calling toString on the deepest (i.e.com.google.protobuf.ByteStringgetStackTraceBytes(int index)The result of calling toString on the deepest (i.e.intgetStackTraceCount()The result of calling toString on the deepest (i.e.java.util.List<java.lang.String>getStackTraceList()The result of calling toString on the deepest (i.e.java.lang.StringgetThrowableClass()The class name of the java.lang.Throwable.com.google.protobuf.ByteStringgetThrowableClassBytes()The class name of the java.lang.Throwable.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getThrowableClass
java.lang.String getThrowableClass()
The class name of the java.lang.Throwable.
string throwable_class = 1;- Returns:
- The throwableClass.
-
getThrowableClassBytes
com.google.protobuf.ByteString getThrowableClassBytes()
The class name of the java.lang.Throwable.
string throwable_class = 1;- Returns:
- The bytes for throwableClass.
-
getMessage
java.lang.String getMessage()
The throwable's message.
string message = 2;- Returns:
- The message.
-
getMessageBytes
com.google.protobuf.ByteString getMessageBytes()
The throwable's message.
string message = 2;- Returns:
- The bytes for message.
-
getStackTraceList
java.util.List<java.lang.String> getStackTraceList()
The result of calling toString on the deepest (i.e. closest to the throwable's construction site) 1000 (or fewer) StackTraceElements. Unstructured to simplify string matching.
repeated string stack_trace = 3;- Returns:
- A list containing the stackTrace.
-
getStackTraceCount
int getStackTraceCount()
The result of calling toString on the deepest (i.e. closest to the throwable's construction site) 1000 (or fewer) StackTraceElements. Unstructured to simplify string matching.
repeated string stack_trace = 3;- Returns:
- The count of stackTrace.
-
getStackTrace
java.lang.String getStackTrace(int index)
The result of calling toString on the deepest (i.e. closest to the throwable's construction site) 1000 (or fewer) StackTraceElements. Unstructured to simplify string matching.
repeated string stack_trace = 3;- Parameters:
index- The index of the element to return.- Returns:
- The stackTrace at the given index.
-
getStackTraceBytes
com.google.protobuf.ByteString getStackTraceBytes(int index)
The result of calling toString on the deepest (i.e. closest to the throwable's construction site) 1000 (or fewer) StackTraceElements. Unstructured to simplify string matching.
repeated string stack_trace = 3;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the stackTrace at the given index.
-
-