Get the values. This returns only the values in the overrides map. @return values
()
| 553 | * @return values |
| 554 | */ |
| 555 | @Override |
| 556 | public Collection<Object> values() { |
| 557 | Collection<Object> vals = new ArrayList<Object>(); |
| 558 | for (String key : keySet()) { |
| 559 | vals.add(get(key)); |
| 560 | } |
| 561 | return vals; |
| 562 | } |
| 563 | |
| 564 | /** |
| 565 | * Gets the map as a String. |