Direct Known Subclasses:
NotificationsEnabledAttribute


public class BooleanAttribute
extends java.lang.Object
The boolean attribute class. It enables creating custom boolean attribute for the user profile.

EXAMPLE:

      UserProfile userProfile = new UserProfile.Builder()
                     .apply(Attribute.customBoolean("is_enabled").withValue(true))
                     .build();
 

Method Summary

All Methods
Instance Methods
Concrete Methods
Modifier and TypeMethod and Description
UserProfileUpdate<? extends com.yandex.metrica.impl.profile.UserProfileUpdatePatcher>withValue(boolean value)
Updates the attribute with the specified value.
UserProfileUpdate<? extends com.yandex.metrica.impl.profile.UserProfileUpdatePatcher>withValueIfUndefined(boolean value)
Updates the attribute with the specified value only if the attribute value is undefined.
UserProfileUpdate<? extends com.yandex.metrica.impl.profile.UserProfileUpdatePatcher>withValueReset()
Resets the attribute value.

Methods inherited from class java.lang.Object

clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Method Detail

withValue

@NonNull
public UserProfileUpdate<? extends com.yandex.metrica.impl.profile.UserProfileUpdatePatcher> withValue(boolean value)
Updates the attribute with the specified value.
Parameters:
value - Boolean value
Returns:
The UserProfileUpdate object

withValueIfUndefined

@NonNull
public UserProfileUpdate<? extends com.yandex.metrica.impl.profile.UserProfileUpdatePatcher> withValueIfUndefined(boolean value)
Updates the attribute with the specified value only if the attribute value is undefined. The method doesn't affect the value if it has been set earlier.
Parameters:
value - Boolean value
Returns:
The UserProfileUpdate object

withValueReset

@NonNull
public UserProfileUpdate<? extends com.yandex.metrica.impl.profile.UserProfileUpdatePatcher> withValueReset()
Resets the attribute value.
Returns:
The UserProfileUpdate object