public static enum BugReportQueue.SuppressionMode extends java.lang.Enum<BugReportQueue.SuppressionMode>
Enum Constant and Description |
---|
ALL
Suppress all report dialogs
|
NONE
Suppress no dialogs.
|
SAME
Suppress only the ones that are for the same error
|
Modifier and Type | Method and Description |
---|---|
static BugReportQueue.SuppressionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BugReportQueue.SuppressionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BugReportQueue.SuppressionMode NONE
public static final BugReportQueue.SuppressionMode SAME
public static final BugReportQueue.SuppressionMode ALL
public static BugReportQueue.SuppressionMode[] values()
for (BugReportQueue.SuppressionMode c : BugReportQueue.SuppressionMode.values()) System.out.println(c);
public static BugReportQueue.SuppressionMode 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