Add missing since tags.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1479400 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
583ee805bd
commit
b9b45674bd
|
@ -52,6 +52,7 @@ public final class UnmodifiableBidiMap<K, V>
|
|||
* @param map the map to decorate, must not be null
|
||||
* @return an unmodifiable BidiMap
|
||||
* @throws IllegalArgumentException if map is null
|
||||
* @since 4.0
|
||||
*/
|
||||
public static <K, V> BidiMap<K, V> unmodifiableBidiMap(final BidiMap<K, V> map) {
|
||||
if (map instanceof Unmodifiable) {
|
||||
|
|
|
@ -52,6 +52,7 @@ public final class UnmodifiableOrderedBidiMap<K, V>
|
|||
* @param map the map to decorate, must not be null
|
||||
* @return an unmodifiable OrderedBidiMap
|
||||
* @throws IllegalArgumentException if map is null
|
||||
* @since 4.0
|
||||
*/
|
||||
public static <K, V> OrderedBidiMap<K, V> unmodifiableOrderedBidiMap(final OrderedBidiMap<K, V> map) {
|
||||
if (map instanceof Unmodifiable) {
|
||||
|
|
|
@ -54,6 +54,7 @@ public final class UnmodifiableSortedBidiMap<K, V>
|
|||
* @param map the map to decorate, must not be null
|
||||
* @return an unmodifiable SortedBidiMap
|
||||
* @throws IllegalArgumentException if map is null
|
||||
* @since 4.0
|
||||
*/
|
||||
public static <K, V> SortedBidiMap<K, V> unmodifiableSortedBidiMap(final SortedBidiMap<K, V> map) {
|
||||
if (map instanceof Unmodifiable) {
|
||||
|
|
Loading…
Reference in New Issue