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

dev.sixpack.client.SupplierSetter Maven / Gradle / Ivy

The newest version!
package dev.sixpack.client;

import dev.sixpack.api.data.Dataset;

public class SupplierSetter {
    private final Dataset dataset;

    public SupplierSetter(Dataset dataset) {
        this.dataset = dataset;
    }

    /**
     * Sets the supplier of the dataset.
     *
     * @param supplier The supplier of the dataset.
     * @return The next builder in the chain.
     */
    public ItemSetter fromSupplier(String supplier) {
        dataset.setSupplier(supplier);
        return new ItemSetter(dataset);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy