I'd like to create new item that similarly to Util.Map.Entry
i.e. that will already contain the structure key,value
The problem is that I can't use Map.Entry itself because apperently it's a read-only object that I can't instanciate new instance of it.
Does anyone know how to create new generic key/value object?
|
|
||||
|
|
You can just implement the
And then use it:
|
|||||||||||||
|
|
There's The fact that it's a
As noted in another answer, Guava also has a convenient You said:
That's not entirely accurate. The reason why you can't instantiate it directly (i.e. with Caveat and tipAs noted in the documentation, To look for another known class that
Unfortunately the 1.5 version does not list any known implementing class that you can use, so you may have be stuck with implementing your own. |
|||||||||||
|
|
Try Maps.immutableEntry from Guava This has the advantage of being compatible with Java 5 (unlike |
|||||||
|
|
I defined a generic Pair class that I use all the time. It's great. As a bonus, by defining a static factory method (Pair.create) I only have to write the type arguments half as often.
} |
|||
|
|
Also as others mentioned Guava's I prefer |
|||
|
|