/* * Copyright (c) 2015 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.yangtools.util; import com.google.common.annotations.Beta; import java.util.Map; import org.eclipse.jdt.annotation.NonNull; import org.opendaylight.yangtools.concepts.Immutable; /** * A {@link Map} which cannot be modified and supports efficient conversion to a {@link ModifiableMapPhase}. * * @param the type of keys maintained by this map * @param the type of mapped values */ @Beta public interface UnmodifiableMapPhase extends Map, Immutable { /** * Return an isolated modifiable version of this map. Its mappings must match the mappings present in this map. Any * modification of the returned map must not be affect the contents of this map. * * @return An modifiable version of this map. */ @NonNull ModifiableMapPhase toModifiableMap(); }