IdMapEntrypublic class IdMapEntry extends Object An IdMapEntry is one int-String pair, for example, an "id" or primary key
in a database and a name or description of the item in the named row.
IdMapEntry objects are immutable.
Rather like a java.util.Map.Entry but without needing to convert. |
Fields Summary |
---|
private final int | id | private final String | name |
Constructors Summary |
---|
public IdMapEntry(int i, String n)
this.id = i;
this.name = n;
|
|