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

com.strobel.functions.Suppliers Maven / Gradle / Ivy

package com.strobel.functions;

import com.strobel.util.ContractUtils;

public final class Suppliers {
    private Suppliers() {
        throw ContractUtils.unreachable();
    }

    public static  Supplier forValue(final T value) {
        return new Supplier() {
            @Override
            public T get() {
                return value;
            }
        };
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy