141f42c245db4ba0b6a187c2e132d8279c6651d3
[yangtools.git] / third-party / triemap / src / main / java / org / opendaylight / yangtools / triemap / ImmutableEntrySet.java
1 /*
2  * (C) Copyright 2017 Pantheon Technologies, s.r.o. and others.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.opendaylight.yangtools.triemap;
17
18 import static org.opendaylight.yangtools.triemap.ImmutableTrieMap.unsupported;
19
20 import java.util.Collection;
21 import java.util.Iterator;
22 import java.util.Map.Entry;
23
24 /**
25  * {@link AbstractEntrySet} implementation guarding against attempts to mutate the underlying map.
26  *
27  * @author Robert Varga
28  *
29  * @param <K> the type of entry keys
30  * @param <V> the type of entry values
31  */
32 final class ImmutableEntrySet<K, V> extends AbstractEntrySet<K, V> {
33     ImmutableEntrySet(final TrieMap<K, V> map) {
34         super(map);
35     }
36
37     @Override
38     public void clear() {
39         throw unsupported();
40     }
41
42     @Override
43     public Iterator<Entry<K, V>> iterator() {
44         return map().immutableIterator();
45     }
46
47     @Override
48     @SuppressWarnings("checkstyle:parameterName")
49     public boolean remove(final Object o) {
50         throw unsupported();
51     }
52
53     @Override
54     @SuppressWarnings("checkstyle:parameterName")
55     public boolean removeAll(final Collection<?> c) {
56         throw unsupported();
57     }
58
59     @Override
60     @SuppressWarnings("checkstyle:parameterName")
61     public boolean retainAll(final Collection<?> c) {
62         throw unsupported();
63     }
64 }