Skip to content

Instantly share code, notes, and snippets.

@andreluisdias
Last active August 13, 2017 01:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andreluisdias/3073ce6e43c60496a9a1bf5ebcc8b26f to your computer and use it in GitHub Desktop.
Save andreluisdias/3073ce6e43c60496a9a1bf5ebcc8b26f to your computer and use it in GitHub Desktop.
Sample Functional Interface in Java according to specification https://docs.oracle.com/javase/specs/jls/se8/html/jls-9.html#jls-9.8
package sample.fi;
@FunctionalInterface
public interface IFunctionalInterface {
int specificMethod();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment