All Questions
Tagged with default-method java
2 questions
1
vote
5
answers
2k
views
Is this an anti pattern or misusing the interface default method?
Instead of checking the null and throwing exception each time we call findByOrderNumber method, I came up with this pattern by taking advantage of a default method, are there any patterns misused here ...
13
votes
1
answer
1k
views
Java Default Method Usage
For decades it's been the case that interfaces were only only (only) for specifying method signatures. We were told that this was the "right way to do things™".
Then Java 8 came out and said:
Well,...