Direct Known Subclasses:
NotificationsEnabledAttribute


public class BooleanAttribute
extends java.lang.Object
Методы класса задают значение логического атрибута.

ПРИМЕР:

      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)
Методы класса задают значение логического атрибута.
UserProfileUpdate<? extends com.yandex.metrica.impl.profile.UserProfileUpdatePatcher>withValueIfUndefined(boolean value)
Обновляет значение атрибута, если оно не было установлено ранее.
UserProfileUpdate<? extends com.yandex.metrica.impl.profile.UserProfileUpdatePatcher>withValueReset()
Сбрасывает значение атрибута.

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)
Методы класса задают значение логического атрибута.
Parameters:
value - Значение атрибута: true или false.
Returns:
Объект UserProfileUpdate, который содержит все обновления атрибутов.

withValueIfUndefined

@NonNull
public UserProfileUpdate<? extends com.yandex.metrica.impl.profile.UserProfileUpdatePatcher> withValueIfUndefined(boolean value)
Обновляет значение атрибута, если оно не было установлено ранее. Не перезаписывает значение атрибута, если оно было установлено.
Parameters:
value - Значение атрибута: true или false.
Returns:
The UserProfileUpdate, который содержит все обновления атрибутов.

withValueReset

@NonNull
public UserProfileUpdate<? extends com.yandex.metrica.impl.profile.UserProfileUpdatePatcher> withValueReset()
Сбрасывает значение атрибута.
Returns:
The UserProfileUpdate, который содержит все обновления атрибутов.