Interface FailureDetails.CrashOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FailureDetails.Crash,FailureDetails.Crash.Builder
- Enclosing class:
- FailureDetails
public static interface FailureDetails.CrashOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FailureDetails.ThrowablegetCauses(int index)The cause chain of the crash, with the outermost throwable first.intgetCausesCount()The cause chain of the crash, with the outermost throwable first.java.util.List<FailureDetails.Throwable>getCausesList()The cause chain of the crash, with the outermost throwable first.FailureDetails.ThrowableOrBuildergetCausesOrBuilder(int index)The cause chain of the crash, with the outermost throwable first.java.util.List<? extends FailureDetails.ThrowableOrBuilder>getCausesOrBuilderList()The cause chain of the crash, with the outermost throwable first.FailureDetails.Crash.CodegetCode().failure_details.Crash.Code code = 1;intgetCodeValue().failure_details.Crash.Code code = 1;-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCodeValue
int getCodeValue()
.failure_details.Crash.Code code = 1;- Returns:
- The enum numeric value on the wire for code.
-
getCode
FailureDetails.Crash.Code getCode()
.failure_details.Crash.Code code = 1;- Returns:
- The code.
-
getCausesList
java.util.List<FailureDetails.Throwable> getCausesList()
The cause chain of the crash, with the outermost throwable first. Limited to the outermost exception and at most 4 nested causes (so, max size of 5).
repeated .failure_details.Throwable causes = 2;
-
getCauses
FailureDetails.Throwable getCauses(int index)
The cause chain of the crash, with the outermost throwable first. Limited to the outermost exception and at most 4 nested causes (so, max size of 5).
repeated .failure_details.Throwable causes = 2;
-
getCausesCount
int getCausesCount()
The cause chain of the crash, with the outermost throwable first. Limited to the outermost exception and at most 4 nested causes (so, max size of 5).
repeated .failure_details.Throwable causes = 2;
-
getCausesOrBuilderList
java.util.List<? extends FailureDetails.ThrowableOrBuilder> getCausesOrBuilderList()
The cause chain of the crash, with the outermost throwable first. Limited to the outermost exception and at most 4 nested causes (so, max size of 5).
repeated .failure_details.Throwable causes = 2;
-
getCausesOrBuilder
FailureDetails.ThrowableOrBuilder getCausesOrBuilder(int index)
The cause chain of the crash, with the outermost throwable first. Limited to the outermost exception and at most 4 nested causes (so, max size of 5).
repeated .failure_details.Throwable causes = 2;
-
-