IMMUTABLE_TREE_R0: ImmMap.java

File ImmMap.java, 2.2 KB (added by stefan, 16 years ago)
Line 
1package org.sophie2.base.commons.util;
2
3import java.util.Comparator;
4
5/**
6 * Interface that provides necessary functionality for immutable map
7 *
8 * @author stefan
9 *
10 * @param <K>
11 *            Type of the key.
12 * @param <V>
13 *            Type of the value.
14 * @extends {@link ImmCollection}
15 */
16public interface ImmMap<K, V> extends ImmCollection<ImmMap.ImmEntry<K, V>> {
17        /**
18         * Inner class that is used for storing relation key - value.
19         *
20         * @author stefan
21         *
22         * @param <K>
23         * @param <V>
24         */
25        public static class ImmEntry<K, V> {
26                private final K key;
27                private final V value;
28
29                /**
30                 * @param key
31                 * @param data
32                 */
33                public ImmEntry(K key, V data) {
34                        this.key = key;
35                        this.value = data;
36                }
37
38                /**
39                 * Returns key.
40                 *
41                 * @return key
42                 */
43                public K getKey() {
44                        return this.key;
45                }
46
47                /**
48                 * Returns value.
49                 *
50                 * @return value
51                 */
52                public V getValue() {
53                        return this.value;
54                }
55
56                @Override
57                public String toString() {
58                        return ("(" + this.key.toString() + ", " + this.value.toString() + ")");
59                }
60        }
61
62        /**
63         * Gets value from {@link ImmMap.ImmEntry} that has key.
64         *
65         * @param key
66         * @return value for a given key.
67         */
68        V get(K key);
69
70        /**
71         * Puts value at the {@link ImmMap.ImmEntry} that has key.
72         *
73         * @param key
74         * @param value
75         * @return new {@link ImmMap} with all changes applied.
76         */
77        ImmMap<K, V> put(K key, V value);
78
79        /**
80         * @param key
81         * @return boolean If map contains given key
82         */
83        boolean contains(K key);
84
85        /**
86         * Removes {@link ImmMap.ImmEntry} from the map that has key.
87         *
88         * @param key
89         * @return new {@link ImmMap} with all changes applied.
90         */
91        ImmMap<K, V> remove(K key);
92
93        /**
94         * Gets the {@link Comparator} used to arrange elements in the set by keys.
95         *
96         * @return {@link Comparator}.
97         */
98        Comparator<K> getComparator();
99
100        /**
101         * Gives sub {@link ImmMap} of the current <code>ImmMap</code> (including)
102         * <var>fromKey</var> and (excluding) <var>toKey</var>
103         *
104         * @param fromKey
105         * @param toKey
106         * @return new {@link ImmMap} containing elements in the given range.
107         */
108        ImmMap<K, V> subMap(K fromKey, K toKey);
109}