Java 9 - how to use private method in Interface
"private static" and "private" methods are added to interface in Java 9. Now private methods can be implemented "static" or "non-static". Here's the example using default method to access the private non-static...
more...