View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one or more
3    * contributor license agreements.  See the NOTICE file distributed with
4    * this work for additional information regarding copyright ownership.
5    * The ASF licenses this file to You under the Apache License, Version 2.0
6    * (the "License"); you may not use this file except in compliance with
7    * the License.  You may obtain a copy of the License at
8    *
9    *      http://www.apache.org/licenses/LICENSE-2.0
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   */
17  package org.apache.commons.collections4.set;
18  
19  import java.io.IOException;
20  import java.io.ObjectInputStream;
21  import java.io.ObjectOutputStream;
22  import java.util.Collection;
23  import java.util.Iterator;
24  import java.util.SortedSet;
25  import java.util.function.Predicate;
26  
27  import org.apache.commons.collections4.Unmodifiable;
28  import org.apache.commons.collections4.iterators.UnmodifiableIterator;
29  
30  /**
31   * Decorates another {@code SortedSet} to ensure it can't be altered.
32   * <p>
33   * This class is Serializable from Commons Collections 3.1.
34   * </p>
35   * <p>
36   * Attempts to modify it will result in an UnsupportedOperationException.
37   * </p>
38   *
39   * @param <E> the type of the elements in this set
40   * @since 3.0
41   */
42  public final class UnmodifiableSortedSet<E>
43          extends AbstractSortedSetDecorator<E>
44          implements Unmodifiable {
45  
46      /** Serialization version */
47      private static final long serialVersionUID = -725356885467962424L;
48  
49      /**
50       * Factory method to create an unmodifiable set.
51       *
52       * @param <E> the element type
53       * @param set  the set to decorate, must not be null
54       * @return a new unmodifiable {@link SortedSet}
55       * @throws NullPointerException if set is null
56       * @since 4.0
57       */
58      public static <E> SortedSet<E> unmodifiableSortedSet(final SortedSet<E> set) {
59          if (set instanceof Unmodifiable) {
60              return set;
61          }
62          return new UnmodifiableSortedSet<>(set);
63      }
64  
65      /**
66       * Constructor that wraps (not copies).
67       *
68       * @param set  the set to decorate, must not be null
69       * @throws NullPointerException if set is null
70       */
71      private UnmodifiableSortedSet(final SortedSet<E> set) {
72          super(set);
73      }
74  
75      @Override
76      public boolean add(final E object) {
77          throw new UnsupportedOperationException();
78      }
79  
80      @Override
81      public boolean addAll(final Collection<? extends E> coll) {
82          throw new UnsupportedOperationException();
83      }
84  
85      @Override
86      public void clear() {
87          throw new UnsupportedOperationException();
88      }
89  
90      @Override
91      public SortedSet<E> headSet(final E toElement) {
92          final SortedSet<E> head = decorated().headSet(toElement);
93          return unmodifiableSortedSet(head);
94      }
95  
96      @Override
97      public Iterator<E> iterator() {
98          return UnmodifiableIterator.unmodifiableIterator(decorated().iterator());
99      }
100 
101     /**
102      * Read the collection in using a custom routine.
103      *
104      * @param in  the input stream
105      * @throws IOException if an error occurs while reading from the stream
106      * @throws ClassNotFoundException if an object read from the stream can not be loaded
107      */
108     @SuppressWarnings("unchecked") // (1) should only fail if input stream is incorrect
109     private void readObject(final ObjectInputStream in) throws IOException, ClassNotFoundException {
110         in.defaultReadObject();
111         setCollection((Collection<E>) in.readObject()); // (1)
112     }
113 
114     @Override
115     public boolean remove(final Object object) {
116         throw new UnsupportedOperationException();
117     }
118 
119     @Override
120     public boolean removeAll(final Collection<?> coll) {
121         throw new UnsupportedOperationException();
122     }
123 
124     /**
125      * @since 4.4
126      */
127     @Override
128     public boolean removeIf(final Predicate<? super E> filter) {
129         throw new UnsupportedOperationException();
130     }
131 
132     @Override
133     public boolean retainAll(final Collection<?> coll) {
134         throw new UnsupportedOperationException();
135     }
136 
137     @Override
138     public SortedSet<E> subSet(final E fromElement, final E toElement) {
139         final SortedSet<E> sub = decorated().subSet(fromElement, toElement);
140         return unmodifiableSortedSet(sub);
141     }
142 
143     @Override
144     public SortedSet<E> tailSet(final E fromElement) {
145         final SortedSet<E> tail = decorated().tailSet(fromElement);
146         return unmodifiableSortedSet(tail);
147     }
148 
149     /**
150      * Write the collection out using a custom routine.
151      *
152      * @param out  the output stream
153      * @throws IOException if an error occurs while writing to the stream
154      */
155     private void writeObject(final ObjectOutputStream out) throws IOException {
156         out.defaultWriteObject();
157         out.writeObject(decorated());
158     }
159 
160 }