-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSingleElementImmutableList.java
84 lines (66 loc) · 2.57 KB
/
SingleElementImmutableList.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
public class SingleElementImmutableList<T> extends ArrayList<T> {
private final T element;
private SingleElementImmutableList(T element) {
super(1);
super.add(element);
this.element = element;
}
public static <R> SingleElementImmutableList<R> of(R element) {
return new SingleElementImmutableList<>(element);
}
public T getElement() {
return element;
}
public List<T> toModifiableList() {
ArrayList<T> list = new ArrayList<>(1);
list.add(element);
return list;
}
@Override
public boolean add(T t) {
throw new UnsupportedOperationException("Can't add to a " + SingleElementImmutableList.class.getName());
}
@Override
public boolean remove(Object o) {
throw new UnsupportedOperationException("Can't remove from a " + SingleElementImmutableList.class.getName());
}
@Override
public boolean addAll(Collection<? extends T> collection) {
throw new UnsupportedOperationException("Can't add to a " + SingleElementImmutableList.class.getName());
}
@Override
public boolean addAll(int i, Collection<? extends T> collection) {
throw new UnsupportedOperationException("Can't add to a " + SingleElementImmutableList.class.getName());
}
@Override
public boolean removeAll(Collection<?> collection) {
throw new UnsupportedOperationException("Can't remove from a " + SingleElementImmutableList.class.getName());
}
@Override
public boolean retainAll(Collection<?> collection) {
throw new UnsupportedOperationException("Can't remove from a " + SingleElementImmutableList.class.getName());
}
@Override
public void clear() {
throw new UnsupportedOperationException("Can't clear a " + SingleElementImmutableList.class.getName());
}
@Override
public T set(int i, T t) {
throw new UnsupportedOperationException("Can't set for a " + SingleElementImmutableList.class.getName());
}
@Override
public void add(int i, T t) {
throw new UnsupportedOperationException("Can't add to a " + SingleElementImmutableList.class.getName());
}
@Override
public T remove(int i) {
throw new UnsupportedOperationException("Can't remove from a " + SingleElementImmutableList.class.getName());
}
@Override
public List<T> subList(int i, int i1) {
throw new UnsupportedOperationException("Can't sublist a " + SingleElementImmutableList.class.getName());
}
}