Methods are forwarded directly to the decorated map.
This implementation does not perform any special processing with {@link #entrySet()}, {@link #keySet()} or {@link #values()}. Instead it simply returns the set/collection from the wrapped map. This may be undesirable, for example if you are trying to write a validating implementation it would provide a loophole around the validation. But, you might want that loophole, so this class is kept simple. @param < K> the type of the keys in the map @param < V> the type of the values in the map @since 3.0 @version $Id: AbstractMapDecorator.java 1494296 2013-06-18 20:54:29Z tn $
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|