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:
Thomas Neidhart 2013-05-05 21:49:47 +00:00
parent 583ee805bd
commit b9b45674bd
3 changed files with 3 additions and 0 deletions

View File

@ -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) {

View File

@ -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) {

View File

@ -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) {