我有一个Multimap,它在“place”和“event”的键值下多次保存自定义对象(Places和Events),在这些对象中我有地名和事件名称(getters)。在迭代Multimap时如何访问这些值。
答案 0 :(得分:0)
你可以,
Collection<Object> values = map.get(key);
checkState(values.size() == 2, String.format("Found %d values for key %s", values.size(), key));
return values.iterator().next(); // to get the first
Iterator<Object> it = values.iterator();
it.next(); // move the pointer to the second object
return it.next(); // get the second object