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

io.sphere.sdk.taxcategories.TaxRateBuilder Maven / Gradle / Ivy

The newest version!
package io.sphere.sdk.taxcategories;

import java.util.Optional;
import com.neovisionaries.i18n.CountryCode;
import io.sphere.sdk.models.Builder;

public final class TaxRateBuilder implements Builder {
    private Optional id = Optional.empty();
    private String name;
    private double amount;
    private boolean includedInPrice;
    private CountryCode country;
    private Optional state = Optional.empty();

    private TaxRateBuilder(final String name, final double amount, final boolean includedInPrice, final CountryCode country) {
        this.name = name;
        this.amount = amount;
        this.includedInPrice = includedInPrice;
        this.country = country;
    }

    public static TaxRateBuilder of(final String name, final double amount, final boolean includedInPrice, final CountryCode country) {
        return new TaxRateBuilder(name, amount, includedInPrice, country);
    }

    public TaxRateBuilder id(final Optional id) {
        this.id = id;
        return this;
    }
    
    public TaxRateBuilder id(final String id) {
        return id(Optional.ofNullable(id));
    }

    public TaxRateBuilder state(final Optional state) {
        this.state = state;
        return this;
    }

    public TaxRateBuilder state(final String state) {
        return state(Optional.ofNullable(state));
    }

    @Override
    public TaxRate build() {
        return new TaxRateImpl(id, name, amount, includedInPrice, country, state);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy