↧
Answer by Jorn Vernee for Would this design of interface be considered bad?
This seems like an excellent use case for default interface methods. They basically allow you to implement these convenience methods in terms of the other methods in the interface.For instance in the...
View ArticleWould this design of interface be considered bad?
I have written an interface for storing data as List/Map and have the ability to retrieve it back. Something like this:public interface Repository {<K, V> void register(String typeTag,...
View Article