BUG-7464: make LNodeEntry implement Map.Entry
[yangtools.git] / third-party / triemap / src / main / java / org / opendaylight / yangtools / triemap / LNodeEntry.java
1 /*
2  * (C) Copyright 2016 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 java.util.Map.Entry;
19
20 /**
21  * A single entry in {@link LNodeEntries}, implements {@link Entry} in order to prevent instantiation of objects for
22  * iteration.
23  *
24  * @author Robert Varga
25  *
26  * @param <K> the type of key
27  * @param <V> the type of value
28  */
29 abstract class LNodeEntry<K, V> implements Entry<K, V> {
30     private final K key;
31     private final V value;
32
33     LNodeEntry(final K key, final V value) {
34         this.key = key;
35         this.value = value;
36     }
37
38     @Override
39     public final K getKey() {
40         return key;
41     }
42
43     @Override
44     public final V getValue() {
45         return value;
46     }
47
48     @Override
49     public final V setValue(final V value) {
50         throw new UnsupportedOperationException();
51     }
52
53     @Override
54     public final int hashCode() {
55         return EntryUtil.hash(key, value);
56     }
57
58     @Override
59     public final boolean equals(final Object o) {
60         return EntryUtil.equal(o, key, value);
61     }
62
63     @Override
64     public final String toString() {
65         return EntryUtil.string(key, value);
66     }
67 }