In my java coding, I often end up with several Map<String,Map<String,foo>> or Map<String,List<String>> and then I have trouble remembering which String is which key. I comment the declaration with //Map<capabiltyId,Map<groupId,foo>> or //Map<groupId,List<capabilityId>, but it's not the greatest solution. If String wasn't final, I would make new classes CapabilityId extends String and GroupId extends String, but I can't. Is there a better way to keep track of which thing is the key and maybe have the compiler enforce it?
| |||
feedback
|
|
Instead of having I'm not sure I would do this myself, but if I did, this is probably what I'd do. You could limit the clutter by having an | |||||||||||
feedback
|
|
Wrap strings in wrapper-classes if you want:
| |||
|
feedback
|
|
Create an | |||
|
feedback
|
|
I would put it all in single class and make use of sensible field/method/argument names.
This way the you can see at method/argument names what it expects/returns. | ||||
|
feedback
|
|
There are a number of ways to go on this one (some already mentioned):
| |||
|
feedback
|
|
Instead of | |||
|
feedback
|
|
Adding to the other answers: Wrap it. It is not just a solution to your problem but a good idea in general, i.e. avoid simple parameters. Your code will gain readability, sanity and maintainability. You can add all kinds of nice properties to it, e.g. declare it @Immutable. As you found out it this way is better to remember and to control. You own the class and can do whatever you like with it. | |||
|
feedback
|