public enum CrashManagerUserInput extends Enum<CrashManagerUserInput>
Enum Constant and Description |
---|
CrashManagerUserInputAlwaysSend
User chose to always send crash reports
|
CrashManagerUserInputDontSend
User chose not to send the crash report
|
CrashManagerUserInputSend
User wants the crash report to be sent
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static CrashManagerUserInput |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CrashManagerUserInput[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CrashManagerUserInput CrashManagerUserInputDontSend
public static final CrashManagerUserInput CrashManagerUserInputSend
public static final CrashManagerUserInput CrashManagerUserInputAlwaysSend
public static CrashManagerUserInput[] values()
for (CrashManagerUserInput c : CrashManagerUserInput.values()) System.out.println(c);
public static CrashManagerUserInput valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic int getValue()
Copyright © 2015. All Rights Reserved.