Advertisement
Guest User

Untitled

a guest
Dec 5th, 2018
478
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. enum MyInterfaceProvider<X>
  2. {
  3. MyImplementationOne<String>(new MyImplementationString()),
  4. MyImplementationTwo<Integer>(new MyImplementationInteger())
  5.  
  6. MyInterface<X> clazz;
  7.  
  8. MyInterfaceProvider(MyInterface<X> interf)
  9. {
  10. this.clazz = clazz;
  11. }
  12.  
  13. public MyInterface<X> getImplementation()
  14. {
  15. return clazz;
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement