@ApiStatus.Internal public enum SentryItemType extends java.lang.Enum<SentryItemType>
Enum Constant and Description |
---|
Attachment |
Event |
Session |
Transaction |
Unknown |
UserFeedback |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getItemType() |
static SentryItemType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SentryItemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SentryItemType Session
public static final SentryItemType Event
public static final SentryItemType UserFeedback
public static final SentryItemType Attachment
public static final SentryItemType Transaction
public static final SentryItemType Unknown
public static SentryItemType[] values()
for (SentryItemType c : SentryItemType.values()) System.out.println(c);
public static SentryItemType 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 getItemType()