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

it.auties.whatsapp.model.action.TimeFormatActionBuilder Maven / Gradle / Ivy

package it.auties.whatsapp.model.action;

public class TimeFormatActionBuilder {
    private boolean twentyFourHourFormatEnabled;

    public TimeFormatActionBuilder() {
        twentyFourHourFormatEnabled = false;
    }

    public TimeFormatActionBuilder twentyFourHourFormatEnabled(boolean twentyFourHourFormatEnabled) {
        this.twentyFourHourFormatEnabled = twentyFourHourFormatEnabled;
        return this;
    }

    public it.auties.whatsapp.model.action.TimeFormatAction build() {
        return new it.auties.whatsapp.model.action.TimeFormatAction(twentyFourHourFormatEnabled);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy