How to get a HashMap value with three values
I just faced the same issue and decided to map my key to an Entry. This allows for the same indexing features provided by a map while having more than one property associated with a key. I think it’s a much neater solution that creating a separate class or nesting maps. Map<String, Entry<Action, Boolean>> actionMap … Read more