Bohtvaroh

Blogger - FPOWJPWB - Function0

Jul 26th, 2012
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5 0.22 KB | None | 0 0
  1. /**
  2.  * Generic 0-arg function type.
  3.  */
  4. public abstract class Function0<A> {
  5.     /**
  6.      * Invokes and returns <code>A</code>.
  7.      *
  8.      * @return call result
  9.      */
  10.     public abstract A apply() throws Exception;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment