Home | History | Annotate | Download | only in util

Lines Matching defs:key

32         multiMap.put("key", "value1");
33 multiMap.put("key", "value2");
38 // key's for value1, value2 and collisionKeyvalue might be one of three possible values,
48 * Helper method testGetUniqueMap() for that will check that the given value's key matches
53 * @return <code>true</code> if key matched one of the expected values
58 String key = entry.getKey();
59 return key.equals("key") || key.equals("key2") || key.equals("key2X");