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

it.auties.whatsapp.model.sync.RecentEmojiWeightBuilder Maven / Gradle / Ivy

package it.auties.whatsapp.model.sync;

public class RecentEmojiWeightBuilder {
    private java.lang.String emoji;
    private java.lang.Float weight;

    public RecentEmojiWeightBuilder() {
        emoji = null;
        weight = null;
    }

    public RecentEmojiWeightBuilder emoji(java.lang.String emoji) {
        this.emoji = emoji;
        return this;
    }
    public RecentEmojiWeightBuilder weight(java.lang.Float weight) {
        this.weight = weight;
        return this;
    }

    public it.auties.whatsapp.model.sync.RecentEmojiWeight build() {
        return new it.auties.whatsapp.model.sync.RecentEmojiWeight(emoji, weight);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy