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

com.belteshazzar.jquery.functions.callers.IntStringFunctionCaller Maven / Gradle / Ivy

The newest version!
package com.belteshazzar.jquery.functions.callers;

import com.belteshazzar.jquery.functions.IntStringFunction;

public class IntStringFunctionCaller {

	private IntStringFunction function;

	public IntStringFunctionCaller(IntStringFunction function) {
		this.function = function;
	}

	public String call(int i) {
		return function.apply(i);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy