Event

A tracking event.

public class Event<T extends Enum<T>>

Parameters

<T>

< an event enum value (for ex. an AnalysisScreenEvent value)

Constructors

Event
Link copied to clipboard

Internal use only.

void Event(T type, Map<String, Objectdetails)
Event
Link copied to clipboard

Internal use only.

void Event(T type)

Functions

equals
Link copied to clipboard

Internal use only.

boolean equals(Object o)
getDetails
Link copied to clipboard

Details about the event. You can find the possible keys in the event enum.

The map is empty if the event has no details.

Map<String, ObjectgetDetails()
getType
Link copied to clipboard

the type of the event which is an event enum value (for ex. an AnalysisScreenEvent value)

T getType()
hashCode
Link copied to clipboard

Internal use only.

int hashCode()
toString
Link copied to clipboard

Internal use only.

String toString()

Properties

details
Link copied to clipboard
private final Map<String, Objectdetails
type
Link copied to clipboard
private final T type