Package io.sentry
Class SentryAttribute
java.lang.Object
io.sentry.SentryAttribute
-
Method Summary
Modifier and TypeMethodDescriptionstatic @NotNull SentryAttributebooleanAttribute(@NotNull String name, @Nullable Boolean value) static @NotNull SentryAttributedoubleAttribute(@NotNull String name, @Nullable Double value) @NotNull StringgetName()@Nullable SentryAttributeTypegetType()@Nullable ObjectgetValue()static @NotNull SentryAttributeintegerAttribute(@NotNull String name, @Nullable Integer value) static @NotNull SentryAttributestatic @NotNull SentryAttributestringAttribute(@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)
-