TrackStrategy

Enum class to set tracking strategy for specific event parameter.

By default, strategy is set to TrackStrategy.DEFAULT, so you don't need to set strategy explicitly for each parameter.

Entries

Link copied to clipboard

Track strategy set in parameter by default.

Link copied to clipboard

This strategy has effect for nullable parameters. It skips whole parameter tracking when value of it is null. For not-null parameters behavior same as DEFAULT.

Link copied to clipboard

This strategy has effect for nullable parameters. By default, you can't track null value itself. It would be converted to "null" by PrimitivesConverter. Using this strategy null will be explicitly added to parameters map. For not-null parameters behavior same as DEFAULT.

Properties

Link copied to clipboard

Returns a representation of an immutable list of all enum entries, in the order they're declared.

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.