/*
* Copyright (c) 2017 Goldman Sachs and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Eclipse Distribution License v. 1.0 which accompany this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*/
package org.eclipse.collections.impl.factory;
import java.util.Map;
import org.eclipse.collections.api.factory.map.FixedSizeMapFactory;
import org.eclipse.collections.api.factory.map.ImmutableMapFactory;
import org.eclipse.collections.api.factory.map.MutableMapFactory;
import org.eclipse.collections.api.map.MutableMap;
import org.eclipse.collections.impl.map.fixed.FixedSizeMapFactoryImpl;
import org.eclipse.collections.impl.map.immutable.ImmutableMapFactoryImpl;
import org.eclipse.collections.impl.map.mutable.MapAdapter;
import org.eclipse.collections.impl.map.mutable.MutableMapFactoryImpl;
This class should be used to create instances of MutableMap, ImmutableMap and FixedSizeMap
Mutable Examples:
MutableMap<String, String> emptyMap = Maps.mutable.empty();
MutableMap<String, String> mapWith = Maps.mutable.with("a", "A", "b", "B", "c", "C");
MutableMap<String, String> mapOf = Maps.mutable.of("a", "A", "b", "B", "c", "C");
Immutable Examples:
ImmutableMap<String, String> emptyMap = Maps.immutable.empty();
ImmutableMap<String, String> mapWith = Maps.immutable.with("a", "A", "b", "B", "c", "C");
ImmutableMap<String, String> mapOf = Maps.immutable.of("a", "A", "b", "B", "c", "C");
FixedSize Examples:
FixedSizeMap<String, String> emptyMap = Maps.fixedSize.empty();
FixedSizeMap<String, String> mapWith = Maps.fixedSize.with("a", "A", "b", "B", "c", "C");
FixedSizeMap<String, String> mapOf = Maps.fixedSize.of("a", "A", "b", "B", "c", "C");
/**
* This class should be used to create instances of MutableMap, ImmutableMap and FixedSizeMap
* <p>
* Mutable Examples:
*
* <pre>
* MutableMap<String, String> emptyMap = Maps.mutable.empty();
* MutableMap<String, String> mapWith = Maps.mutable.with("a", "A", "b", "B", "c", "C");
* MutableMap<String, String> mapOf = Maps.mutable.of("a", "A", "b", "B", "c", "C");
* </pre>
*
* Immutable Examples:
*
* <pre>
* ImmutableMap<String, String> emptyMap = Maps.immutable.empty();
* ImmutableMap<String, String> mapWith = Maps.immutable.with("a", "A", "b", "B", "c", "C");
* ImmutableMap<String, String> mapOf = Maps.immutable.of("a", "A", "b", "B", "c", "C");
* </pre>
*
* FixedSize Examples:
*
* <pre>
* FixedSizeMap<String, String> emptyMap = Maps.fixedSize.empty();
* FixedSizeMap<String, String> mapWith = Maps.fixedSize.with("a", "A", "b", "B", "c", "C");
* FixedSizeMap<String, String> mapOf = Maps.fixedSize.of("a", "A", "b", "B", "c", "C");
* </pre>
*/
@SuppressWarnings("ConstantNamingConvention")
public final class Maps
{
public static final ImmutableMapFactory immutable = ImmutableMapFactoryImpl.INSTANCE;
public static final FixedSizeMapFactory fixedSize = FixedSizeMapFactoryImpl.INSTANCE;
public static final MutableMapFactory mutable = MutableMapFactoryImpl.INSTANCE;
private Maps()
{
throw new AssertionError("Suppress default constructor for noninstantiability");
}
Since: 9.0.
/**
* @since 9.0.
*/
public static <K, V> MutableMap<K, V> adapt(Map<K, V> map)
{
return MapAdapter.adapt(map);
}
}