public interface IsMapStrategy<K,V> extends CategoryIs
Base for Map strategies.
| Modifier and Type | Method and Description |
|---|---|
Map<K,V> |
get()
Returns a new map for the used strategy.
|
Map<K,V> |
get(Map<K,V> map)
Returns a new map for the used strategy initialized with the elements of another map.
|
boolean |
isAbstractMap()
Test if the map is an abstract map (an implementation of an
AbstractMap hat does not require special keys. |
boolean |
isConcurrentMap()
Test if the map is a concurrent map.
|
boolean |
isHashtable()
Test if the map is a hash table map.
|
boolean |
isNavigableMap()
Test if the map is a navigable map.
|
boolean |
isSortedMap()
Test if the map is a sorted map.
|
boolean isAbstractMap()
Test if the map is an abstract map (an implementation of an AbstractMap hat does not require special keys.
boolean isSortedMap()
Test if the map is a sorted map.
boolean isNavigableMap()
Test if the map is a navigable map.
boolean isConcurrentMap()
Test if the map is a concurrent map.
boolean isHashtable()
Test if the map is a hash table map.
Copyright © 2016–2017. All rights reserved.