Class EventProperties
- java.lang.Object
-
- com.microsoft.appcenter.analytics.EventProperties
-
public class EventProperties extends java.lang.ObjectEvent properties builder.
-
-
Constructor Summary
Constructors Constructor Description EventProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EventPropertiesset(java.lang.String key, boolean value)Set the specified property value with the specified key.EventPropertiesset(java.lang.String key, double value)Set the specified property value with the specified key.EventPropertiesset(java.lang.String key, long value)Set the specified property value with the specified key.EventPropertiesset(java.lang.String key, java.lang.String value)Set the specified property value with the specified key.EventPropertiesset(java.lang.String key, java.util.Date value)Set the specified property value with the specified key.
-
-
-
Method Detail
-
set
public EventProperties set(java.lang.String key, boolean value)
Set the specified property value with the specified key. If the properties previously contained a property for the key, the old value is replaced.- Parameters:
key- key with which the specified value is to be set.value- value to be set with the specified key.- Returns:
- this instance.
-
set
public EventProperties set(java.lang.String key, java.util.Date value)
Set the specified property value with the specified key. If the properties previously contained a property for the key, the old value is replaced.- Parameters:
key- key with which the specified value is to be set.value- value to be set with the specified key.- Returns:
- this instance.
-
set
public EventProperties set(java.lang.String key, double value)
Set the specified property value with the specified key. If the properties previously contained a property for the key, the old value is replaced.- Parameters:
key- key with which the specified value is to be set.value- value to be set with the specified key.- Returns:
- this instance.
-
set
public EventProperties set(java.lang.String key, long value)
Set the specified property value with the specified key. If the properties previously contained a property for the key, the old value is replaced.- Parameters:
key- key with which the specified value is to be set.value- value to be set with the specified key.- Returns:
- this instance.
-
set
public EventProperties set(java.lang.String key, java.lang.String value)
Set the specified property value with the specified key. If the properties previously contained a property for the key, the old value is replaced.- Parameters:
key- key with which the specified value is to be set.value- value to be set with the specified key.- Returns:
- this instance.
-
-