public enum BreadcrumbType extends java.lang.Enum<BreadcrumbType>
| Enum Constant and Description |
|---|
ERROR
An error was sent to Bugsnag (internal use only)
|
LOG
A log message
|
MANUAL
A manual invocation of `leaveBreadcrumb` (default)
|
NAVIGATION
A navigation event, such as a window opening or closing
|
PROCESS
A background process such as a database query
|
REQUEST
A network request
|
STATE
A change in application state, such as launch or memory warning
|
USER
A user action, such as tapping a button
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static BreadcrumbType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BreadcrumbType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BreadcrumbType ERROR
public static final BreadcrumbType LOG
public static final BreadcrumbType MANUAL
public static final BreadcrumbType NAVIGATION
public static final BreadcrumbType PROCESS
public static final BreadcrumbType REQUEST
public static final BreadcrumbType STATE
public static final BreadcrumbType USER
public static BreadcrumbType[] values()
for (BreadcrumbType c : BreadcrumbType.values()) System.out.println(c);
public static BreadcrumbType 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<BreadcrumbType>