1 | package org.sophie2.base.commons.util; |
---|
2 | |
---|
3 | import java.util.Comparator; |
---|
4 | import java.util.Set; |
---|
5 | |
---|
6 | /** |
---|
7 | * Interface that provides necessary functionality for immutable set |
---|
8 | * |
---|
9 | * @author stefan |
---|
10 | * |
---|
11 | * @param <E> |
---|
12 | * Elements type parameter. |
---|
13 | */ |
---|
14 | public interface ImmSet<E> extends ImmCollection<E>{ |
---|
15 | /** |
---|
16 | * Puts element in the set. |
---|
17 | * |
---|
18 | * @param element |
---|
19 | * @return A new {@link ImmSet} that includes the element argument, if it |
---|
20 | * doesn't already contains it. |
---|
21 | */ |
---|
22 | ImmSet<E> put(E element); |
---|
23 | |
---|
24 | /** |
---|
25 | * Checks if this <code>ImmList</code> contains the passed |
---|
26 | * <var>element</var>. |
---|
27 | * |
---|
28 | * @param element |
---|
29 | * @return True if this <code>ImmList</code> contains the element false |
---|
30 | * otherwise. |
---|
31 | */ |
---|
32 | boolean contains(E element); |
---|
33 | |
---|
34 | /** |
---|
35 | * Removes element from the set. |
---|
36 | * |
---|
37 | * @param element |
---|
38 | * @return A new {@link ImmSet} that excludes the element argument, if it |
---|
39 | * does already contains it. |
---|
40 | */ |
---|
41 | ImmSet<E> remove(E element); |
---|
42 | |
---|
43 | /** |
---|
44 | * Get {@link Set} from the <code>ImmCollection</code>. |
---|
45 | * |
---|
46 | * @return A {@link Set} view of the current <code>ImmCollection</code>. |
---|
47 | */ |
---|
48 | Set<E> asSet(); |
---|
49 | |
---|
50 | /** |
---|
51 | * Gives sub {@link ImmSet} of the current <code>ImmSet</code> (including) |
---|
52 | * <var>begin</var> element and (excluding) <var>end</var> element. |
---|
53 | * |
---|
54 | * @param begin |
---|
55 | * @param end |
---|
56 | * @return new {@link ImmSet} containing elements in the given range. |
---|
57 | */ |
---|
58 | ImmSet<E> subSet(E begin, E end); |
---|
59 | |
---|
60 | /** |
---|
61 | * Gets the {@link Comparator} used to arrange elements in the set. |
---|
62 | * |
---|
63 | * @return {@link Comparator}. |
---|
64 | */ |
---|
65 | Comparator<E> getComparator(); |
---|
66 | } |
---|