1 | @Override↵ | | 1 | @Override↵
|
2 | public E set(int index, E object) ↵ | | 2 | public E set(int index, E object) ↵
|
3 | {↵ | | 3 | {↵
|
4 | throw new UnsupportedOperationException();↵ | | 4 | throw new UnsupportedOperationException();↵
|
5 | }↵ | | 5 | }↵
|
|
6 | /**↵ | | 6 | /**↵
|
7 | * Throws an exception.↵ | | 7 | * Throws an exception.↵
|
8 | * @exception UnsupportedOperationException always because it's not supported.↵ | | 8 | * @exception UnsupportedOperationException always because it's not supported.↵
|
9 | */↵ | | 9 | */↵
|
10 | @Override↵ | | 10 | @Override↵
|
11 | public boolean add(E object) ↵ | | 11 | public boolean add(E object) ↵
|
12 | {↵ | | 12 | {↵
|
13 | throw new UnsupportedOperationException();↵ | | 13 | throw new UnsupportedOperationException();↵
|
14 | }↵ | | 14 | }↵
|
|
15 | /**↵ | | 15 | /**↵
|
16 | * Throws an exception.↵ | | 16 | * Throws an exception.↵
|
17 | * @exception UnsupportedOperationException always because it's not supported.↵ | | 17 | * @exception UnsupportedOperationException always because it's not supported.↵
|
18 | */↵ | | 18 | */↵
|
19 | @Override↵ | | 19 | @Override↵
|
20 | public void add(int index, E object) ↵ | | 20 | public void add(int index, E object) ↵
|
21 | {↵ | | 21 | {↵
|
22 | throw new UnsupportedOperationException();↵ | | 22 | throw new UnsupportedOperationException();↵
|
23 | }↵ | | 23 | }↵
|
|
24 | /**↵ | | 24 | /**↵
|
25 | * Throws an exception.↵ | | 25 | * Throws an exception.↵
|
26 | * @exception UnsupportedOperationException always because it's not supported.↵ | | 26 | * @exception UnsupportedOperationException always because it's not supported.↵
|
27 | */↵ | | 27 | */↵
|
28 | @Override↵ | | 28 | @Override↵
|
29 | public boolean addAll(Collection<? extends E> collection) ↵ | | 29 | public boolean addAll(Collection<? extends E> collection) ↵
|
30 | {↵ | | 30 | {↵
|
31 | throw new UnsupportedOperationException();↵ | | 31 | throw new UnsupportedOperationException();↵
|
32 | }↵ | | 32 | }↵
|
|
33 | /**↵ | | 33 | /**↵
|
34 | * Throws an exception.↵ | | 34 | * Throws an exception.↵
|
35 | * @exception UnsupportedOperationException always because it's not supported.↵ | | 35 | * @exception UnsupportedOperationException always because it's not supported.↵
|
36 | */↵ | | 36 | */↵
|
37 | @Override↵ | | 37 | @Override↵
|
38 | public boolean addAll(int index, Collection<? extends E> collection) ↵ | | 38 | public boolean addAll(int index, Collection<? extends E> collection) ↵
|
39 | {↵ | | 39 | {↵
|
40 | throw new UnsupportedOperationException();↵ | | 40 | throw new UnsupportedOperationException();↵
|
41 | }↵ | | 41 | }↵
|
|
42 | /**↵ | | 42 | /**↵
|
43 | * Throws an exception.↵ | | 43 | * Throws an exception.↵
|
44 | * @exception UnsupportedOperationException always because it's not supported.↵ | | 44 | * @exception UnsupportedOperationException always because it's not supported.↵
|
45 | */↵ | | 45 | */↵
|
46 | @Override↵ | | 46 | @Override↵
|
47 | public boolean remove(Object object) ↵ | | 47 | public boolean remove(Object object) ↵
|
48 | {↵ | | 48 | {↵
|
49 | throw new UnsupportedOperationException();↵ | | 49 | throw new UnsupportedOperationException();↵
|
50 | }↵ | | 50 | }↵
|
|
51 | /**↵ | | 51 | /**↵
|
52 | * Throws an exception.↵ | | 52 | * Throws an exception.↵
|
53 | * @exception UnsupportedOperationException always because it's not supported.↵ | | 53 | * @exception UnsupportedOperationException always because it's not supported.↵
|
54 | */↵ | | 54 | */↵
|
55 | @Override↵ | | 55 | @Override↵
|
56 | public E remove(int index) ↵ | | 56 | public E remove(int index) ↵
|
57 | {↵ | | 57 | {↵
|
58 | throw new UnsupportedOperationException();↵ | | 58 | throw new UnsupportedOperationException();↵
|
59 | }↵ | | 59 | }↵
|
|
60 | /**↵ | | 60 | /**↵
|
61 | * Throws an exception.↵ | | 61 | * Throws an exception.↵
|
62 | * @exception UnsupportedOperationException always because it's not supported.↵ | | 62 | * @exception UnsupportedOperationException always because it's not supported.↵
|
63 | */↵ | | 63 | */↵
|
64 | @Override↵ | | 64 | @Override↵
|
65 | public boolean removeAll(Collection<?> collection) ↵ | | 65 | public boolean removeAll(Collection<?> collection) ↵
|
66 | {↵ | | 66 | {↵
|
67 | throw new UnsupportedOperationException();↵ | | 67 | throw new UnsupportedOperationException();↵
|
68 | }↵ | | 68 | }↵
|
|
69 | /**↵ | | 69 | /**↵
|
70 | * Throws an exception.↵ | | 70 | * Throws an exception.↵
|
71 | * @exception UnsupportedOperationException always because it's not supported.↵ | | 71 | * @exception UnsupportedOperationException always because it's not supported.↵
|
72 | */↵ | | 72 | */↵
|
73 | @Override↵ | | 73 | @Override↵
|
74 | public boolean retainAll(Collection<?> collection) ↵ | | 74 | public boolean retainAll(Collection<?> collection) ↵
|
75 | {↵ | | 75 | {↵
|
76 | throw new UnsupportedOperationException();↵ | | 76 | throw new UnsupportedOperationException();↵
|
77 | }↵ | | 77 | }↵
|
|
78 | /**↵ | | 78 | /**↵
|
79 | * Throws an exception.↵ | | 79 | * Throws an exception.↵
|
80 | * @exception UnsupportedOperationException always because it's not supported.↵ | | 80 | * @exception UnsupportedOperationException always because it's not supported.↵
|
81 | */↵ | | 81 | */↵
|
82 | @Override↵ | | 82 | @Override↵
|
83 | public void clear() ↵ | | 83 | public void clear() ↵
|
84 | {↵ | | 84 | {↵
|
85 | throw new UnsupportedOperationException();↵ | | 85 | throw new UnsupportedOperationException();↵
|
86 | }↵ | | 86 | }↵
|
|
87 | /**↵ | | 87 | /**↵
|
88 | * Throws an exception.↵ | | 88 | * Throws an exception.↵
|
89 | * @exception UnsupportedOperationException always because it's not supported.↵ | | 89 | * @exception UnsupportedOperationException always because it's not supported.↵
|
90 | */↵ | | 90 | */↵
|
91 | @Override↵ | | 91 | @Override↵
|
92 | public void move(int index, E object) ↵ | | 92 | public void move(int index, E object) ↵
|
93 | {↵ | | 93 | {↵
|
94 | throw new UnsupportedOperationException();↵ | | 94 | throw new UnsupportedOperationException();↵
|
95 | }↵ | | 95 | }↵
|
|
96 | /**↵ | | 96 | /**↵
|
97 | * Throws an exception.↵ | | 97 | * Throws an exception.↵
|
98 | * @exception UnsupportedOperationException always because it's not supported.↵ | | 98 | * @exception UnsupportedOperationException always because it's not supported.↵
|
99 | */↵ | | 99 | */↵
|
100 | @Override↵ | | 100 | @Override↵
|
101 | public E move(int targetIndex, int sourceIndex)↵ | | 101 | public E move(int targetIndex, int sourceIndex)↵
|
102 | {↵ | | 102 | {↵
|
103 | throw new UnsupportedOperationException(); | | 103 | throw new UnsupportedOperationException();
|