com.github.dmgcodevil.jmspy.functional.Producer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmspy-core Show documentation
Show all versions of jmspy-core Show documentation
Library to record method invocations
package com.github.dmgcodevil.jmspy.functional;
/**
* Functional interface is used to create an objects.
*
* @author dmgcodevil
*/
public interface Producer {
/**
* Creates new object with type .
*
* @return new object with type .
*/
T produce();
}