Skip to content

Instantly share code, notes, and snippets.

@pyricau
Created January 7, 2016 14:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save pyricau/26bc7fb485a02ec1f773 to your computer and use it in GitHub Desktop.
Save pyricau/26bc7fb485a02ec1f773 to your computer and use it in GitHub Desktop.
import java.util.concurrent.Callable;
public enum Lol implements Callable<CharSequence> {
ಠ_ಠ {
@Override public String call() {
return "Foo";
}
};
@Override public CharSequence call() {
return "Bar";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment