All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.auties.whatsapp.model.privacy.PrivacySettingEntryBuilder Maven / Gradle / Ivy

package it.auties.whatsapp.model.privacy;

public class PrivacySettingEntryBuilder {
    private it.auties.whatsapp.model.privacy.PrivacySettingType type;
    private it.auties.whatsapp.model.privacy.PrivacySettingValue value;
    private java.util.List excluded;

    public PrivacySettingEntryBuilder() {
        type = null;
        value = null;
        excluded = it.auties.protobuf.builtin.ProtobufRepeatedMixin.newList();
    }

    public PrivacySettingEntryBuilder type(it.auties.whatsapp.model.privacy.PrivacySettingType type) {
        this.type = type;
        return this;
    }

    public PrivacySettingEntryBuilder value(it.auties.whatsapp.model.privacy.PrivacySettingValue value) {
        this.value = value;
        return this;
    }

    public PrivacySettingEntryBuilder excluded(java.util.List excluded) {
        this.excluded = excluded;
        return this;
    }

    public it.auties.whatsapp.model.privacy.PrivacySettingEntry build() {
        return new it.auties.whatsapp.model.privacy.PrivacySettingEntry(type, value, excluded);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy