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

com.natpryce.makeiteasy.SameValueDonor Maven / Gradle / Ivy

There is a newer version: 4.0.1
Show newest version
package com.natpryce.makeiteasy;

/**
 * Always gives the sale value.
 */
public class SameValueDonor implements Donor {
    private final T value;

    public SameValueDonor(T value) {
        this.value = value;
    }

    @Override
    public T value() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy