-
-
Notifications
You must be signed in to change notification settings - Fork 467
Expand file tree
/
Copy pathDataCategory.java
More file actions
33 lines (28 loc) · 704 Bytes
/
DataCategory.java
File metadata and controls
33 lines (28 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package io.sentry;
import org.jetbrains.annotations.ApiStatus;
import org.jetbrains.annotations.NotNull;
@ApiStatus.Internal
public enum DataCategory {
All("__all__"),
Default("default"), // same as Error
Error("error"),
Feedback("feedback"),
Session("session"),
Attachment("attachment"),
Monitor("monitor"),
Profile("profile"),
ProfileChunkUi("profile_chunk_ui"),
Transaction("transaction"),
Replay("replay"),
Span("span"),
Security("security"),
UserReport("user_report"),
Unknown("unknown");
private final String category;
DataCategory(final @NotNull String category) {
this.category = category;
}
public String getCategory() {
return category;
}
}