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

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

package it.auties.whatsapp.model.sync;

public class ExitCodeBuilder {
    private long code;
    private java.lang.String text;

    public ExitCodeBuilder() {
        code = 0l;
        text = null;
    }

    public ExitCodeBuilder code(long code) {
        this.code = code;
        return this;
    }

    public ExitCodeBuilder text(java.lang.String text) {
        this.text = text;
        return this;
    }

    public it.auties.whatsapp.model.sync.ExitCode build() {
        return new it.auties.whatsapp.model.sync.ExitCode(code, text);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy