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

me.xethh.libs.toolkits.stopWatchEx.StopWatchExFactory Maven / Gradle / Ivy

The newest version!
package me.xethh.libs.toolkits.stopWatchEx;

import java.util.function.Supplier;

public class StopWatchExFactory {
    public StopWatchExFactory(Supplier stopWatchExSupplier){
        this.builder = stopWatchExSupplier;
    }

    private Supplier builder;
    public StopWatchEx getNewOne(){
        return builder.get();
    }

    public static StopWatchExFactory get(Supplier builder){
        return new StopWatchExFactory(builder);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy