public enum ReportingInteractionMode extends java.lang.Enum<ReportingInteractionMode>
Enum Constant and Description |
---|
DIALOG
Direct dialog: a report confirmation dialog is displayed right after the crash.
|
NOTIFICATION
A status bar notification is triggered when the application crashes, the
Force close dialog is not displayed.
|
SILENT
No interaction, reports are sent silently and a "Force close" dialog
terminates the app.
|
TOAST
A simple Toast is triggered when the application crashes, the Force close
dialog is not displayed.
|
Modifier and Type | Method and Description |
---|---|
static ReportingInteractionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReportingInteractionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportingInteractionMode SILENT
public static final ReportingInteractionMode NOTIFICATION
public static final ReportingInteractionMode TOAST
public static final ReportingInteractionMode DIALOG
NOTIFICATION
mode.public static ReportingInteractionMode[] values()
for (ReportingInteractionMode c : ReportingInteractionMode.values()) System.out.println(c);
public static ReportingInteractionMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null