public enum ReportField extends Enum<ReportField>
Enum Constant and Description |
---|
ANDROID_VERSION
Device android version name.
|
APP_VERSION_CODE
Application version code.
|
APP_VERSION_NAME
Application version name.
|
APPLICATION_LOG
Content of your own application log file.
|
AVAILABLE_MEM_SIZE
Estimation of the available device memory size based on filesystem stats.
|
BRAND
Device brand (manufacturer or carrier).
|
BUILD
Android Build details.
|
BUILD_CONFIG
Contains key = value pairs defined by the application developer during
the application build.
|
CRASH_CONFIGURATION
android.content.res.Configuration fields state on the application crash.
|
CUSTOM_DATA
Contains key = value pairs defined by the application developer during
the application execution.
|
DEVICE_FEATURES
Features declared as available on this device by the system.
|
DEVICE_ID
Device unique ID (IMEI).
|
DISPLAY
Device display specifications.
|
DROPBOX
Content of the android.os.DropBoxManager (introduced in API level 8).
|
DUMPSYS_MEMINFO
Memory state details for the application process.
|
ENVIRONMENT
External storage state and standard directories.
|
EVENTSLOG
Logcat eventslog extract.
|
FILE_PATH
Base path of the application's private file folder.
|
INITIAL_CONFIGURATION
android.content.res.Configuration fields state on the application start.
|
INSTALLATION_ID
Installation unique ID.
|
IS_SILENT
True if the report has been explicitly sent silently by the developer.
|
LOGCAT
Logcat default extract.
|
MEDIA_CODEC_LIST
Since Android API Level 16 (Android 4.1 - Jelly Beans), retrieve the list
of supported Media codecs and their capabilities (color format, profile
and level).
|
PACKAGE_NAME
Application package name.
|
PHONE_MODEL
Device model name.
|
PRODUCT
Device overall product code.
|
RADIOLOG
Logcat radio extract.
|
REPORT_ID
Report Identifier.
|
SETTINGS_GLOBAL
Global settings, introduced in Android 4.2 (API level 17) to centralize settings for multiple users.
|
SETTINGS_SECURE
Secure settings (applications can't modify them).
|
SETTINGS_SYSTEM
System settings.
|
SHARED_PREFERENCES
SharedPreferences contents
|
STACK_TRACE
The Holy Stack Trace.
|
STACK_TRACE_HASH
A hash of the stack trace, taking only method names into account.
|
THREAD_DETAILS
Retrieves details of the failing thread (id, name, group name).
|
TOTAL_MEM_SIZE
Estimation of the total device memory size based on filesystem stats.
|
USER_APP_START_DATE
User date on application start.
|
USER_COMMENT
Comment added by the user in the CrashReportDialog.
|
USER_CRASH_DATE
User date immediately after the crash occurred.
|
USER_EMAIL
User email address.
|
USER_IP
Retrieves the user IP address(es).
|
Modifier and Type | Method and Description |
---|---|
static ReportField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReportField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportField REPORT_ID
public static final ReportField APP_VERSION_CODE
public static final ReportField APP_VERSION_NAME
public static final ReportField PACKAGE_NAME
public static final ReportField FILE_PATH
public static final ReportField PHONE_MODEL
public static final ReportField ANDROID_VERSION
public static final ReportField BUILD
public static final ReportField BRAND
public static final ReportField PRODUCT
public static final ReportField TOTAL_MEM_SIZE
public static final ReportField AVAILABLE_MEM_SIZE
public static final ReportField BUILD_CONFIG
public static final ReportField CUSTOM_DATA
public static final ReportField STACK_TRACE
public static final ReportField STACK_TRACE_HASH
public static final ReportField INITIAL_CONFIGURATION
public static final ReportField CRASH_CONFIGURATION
public static final ReportField DISPLAY
public static final ReportField USER_COMMENT
public static final ReportField USER_APP_START_DATE
public static final ReportField USER_CRASH_DATE
public static final ReportField DUMPSYS_MEMINFO
public static final ReportField DROPBOX
public static final ReportField LOGCAT
public static final ReportField EVENTSLOG
public static final ReportField RADIOLOG
public static final ReportField IS_SILENT
public static final ReportField DEVICE_ID
public static final ReportField INSTALLATION_ID
public static final ReportField USER_EMAIL
public static final ReportField DEVICE_FEATURES
public static final ReportField ENVIRONMENT
public static final ReportField SETTINGS_SYSTEM
public static final ReportField SETTINGS_SECURE
public static final ReportField SETTINGS_GLOBAL
public static final ReportField SHARED_PREFERENCES
public static final ReportField APPLICATION_LOG
public static final ReportField MEDIA_CODEC_LIST
public static final ReportField THREAD_DETAILS
public static final ReportField USER_IP
public static ReportField[] values()
for (ReportField c : ReportField.values()) System.out.println(c);
public static ReportField 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 null