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

it.auties.whatsapp.api.WebHistoryLengthBuilder Maven / Gradle / Ivy

There is a newer version: 0.0.7
Show newest version
package it.auties.whatsapp.api;

public class WebHistoryLengthBuilder {
    private int size;

    public WebHistoryLengthBuilder() {
        size = 0;
    }

    public WebHistoryLengthBuilder size(int size) {
        this.size = size;
        return this;
    }

    public it.auties.whatsapp.api.WebHistoryLength build() {
        return new it.auties.whatsapp.api.WebHistoryLength(size);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy