Interface fonctionnelle générique Java

@FunctionalInterface
interface MyInterface {
    String reverseString(String n);
}
SAMER SAEID