Package io.sentry
Class SentryAttribute
java.lang.Object
io.sentry.SentryAttribute
-
Method Summary
Modifier and TypeMethodDescriptionstatic @NotNull SentryAttribute
booleanAttribute
(@NotNull String name, @Nullable Boolean value) static @NotNull SentryAttribute
doubleAttribute
(@NotNull String name, @Nullable Double value) @NotNull String
getName()
@Nullable SentryAttributeType
getType()
@Nullable Object
getValue()
static @NotNull SentryAttribute
integerAttribute
(@NotNull String name, @Nullable Integer value) static @NotNull SentryAttribute
static @NotNull SentryAttribute
stringAttribute
(@NotNull String name, @Nullable String value)
-
Method Details
-
getName
-
getType
-
getValue
-
named
@NotNull public static @NotNull SentryAttribute named(@NotNull @NotNull String name, @Nullable @Nullable Object value) -
booleanAttribute
@NotNull public static @NotNull SentryAttribute booleanAttribute(@NotNull @NotNull String name, @Nullable @Nullable Boolean value) -
integerAttribute
@NotNull public static @NotNull SentryAttribute integerAttribute(@NotNull @NotNull String name, @Nullable @Nullable Integer value) -
doubleAttribute
@NotNull public static @NotNull SentryAttribute doubleAttribute(@NotNull @NotNull String name, @Nullable @Nullable Double value) -
stringAttribute
@NotNull public static @NotNull SentryAttribute stringAttribute(@NotNull @NotNull String name, @Nullable @Nullable String value)
-