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

    Modifier and Type
    Method
    Description
    getCauses(int index)
    The cause chain of the crash, with the outermost throwable first.
    int
    The cause chain of the crash, with the outermost throwable first.
    The cause chain of the crash, with the outermost throwable first.
    getCausesOrBuilder(int index)
    The cause chain of the crash, with the outermost throwable first.
    The cause chain of the crash, with the outermost throwable first.
    .failure_details.Crash.Code code = 1;
    int
    .failure_details.Crash.Code code = 1;
    boolean
    True when the root cause of the crash was not an OutOfMemoryError, but CRASH_OOM was chosen because an OutOfMemoryError was detected prior to the crash.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getCodeValue

      int getCodeValue()
      .failure_details.Crash.Code code = 1;
      Returns:
      The enum numeric value on the wire for code.
    • getCode

      .failure_details.Crash.Code code = 1;
      Returns:
      The code.
    • getCausesList

      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

      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;
    • getOomDetectorOverride

      boolean getOomDetectorOverride()
       True when the root cause of the crash was not an OutOfMemoryError, but
       CRASH_OOM was chosen because an OutOfMemoryError was detected prior to the
       crash.
       
      bool oom_detector_override = 3;
      Returns:
      The oomDetectorOverride.