All Questions
2 questions
0
votes
2
answers
181
views
How to write the following snippet in more cleaner way?
When the caller gives me a call, I need to evaluate n number of criteria which currently I'm doing like
if (a & b & c & d & e)
Day by day the conditions are growing and it's ...
9
votes
2
answers
5k
views
Is implementing an interface defined in a subpackage an anti-pattern?
Let's say I have the following:
package me.my.pkg;
public interface Something {
/* ... couple of methods go here ... */
}
and:
package me.my;
import me.my.pkg.Something;
public class SomeClass ...