forked from getsentry/sentry-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataCategory.java
More file actions
35 lines (30 loc) · 750 Bytes
/
Copy pathDataCategory.java
File metadata and controls
35 lines (30 loc) · 750 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
34
35
package io.sentry;
import org.jetbrains.annotations.NotNull;
public enum DataCategory {
All("__all__"),
Default("default"), // same as Error
Error("error"),
Feedback("feedback"),
Session("session"),
Attachment("attachment"),
LogItem("log_item"),
LogByte("log_byte"),
TraceMetric("trace_metric"),
Monitor("monitor"),
Profile("profile"),
ProfileChunkUi("profile_chunk_ui"),
ProfileChunk("profile_chunk"),
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;
}
}