ommons.1.0.6.source-code.PrintAll Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons Show documentation
Show all versions of commons Show documentation
General structure to easily create dynamic logic via MethodHandles and others.
import java.util.Collection;
/**
* Created by kuli on 22.02.17.
*/
@FunctionalInterface
public interface PrintAll {
void printAll(Collection values);
}