Java definiert eine funktionale Schnittstelle in Java
import java.lang.FunctionalInterface;
@FunctionalInterface
public interface MyInterface{
// the single abstract method
double getValue();
}
SAMER SAEID