View Javadoc
1   package org.djutils.immutablecollections;
2   
3   import java.util.Collection;
4   import java.util.LinkedHashSet;
5   import java.util.Set;
6   
7   /**
8    * An immutable wrapper for a LinkedHashSet.
9    * <p>
10   * Copyright (c) 2016-2025 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See
11   * for project information <a href="https://djutils.org" target="_blank"> https://djutils.org</a>. The DJUTILS project is
12   * distributed under a three-clause BSD-style license, which can be found at
13   * <a href="https://djutils.org/docs/license.html" target="_blank"> https://djutils.org/docs/license.html</a>.
14   * </p>
15   * $, initial version May 7, 2016 <br>
16   * @author <a href="https://www.tudelft.nl/averbraeck">Alexander Verbraeck</a>
17   * @author <a href="https://www.tudelft.nl/staff/p.knoppers/">Peter Knoppers</a>
18   * @param <E> the type of content of this Set
19   */
20  public class ImmutableLinkedHashSet<E> extends ImmutableAbstractSet<E>
21  {
22      /**
23       * @param collection the collection to use for the immutable set.
24       */
25      public ImmutableLinkedHashSet(final Collection<? extends E> collection)
26      {
27          super(new LinkedHashSet<E>(collection), Immutable.COPY);
28      }
29  
30      /**
31       * @param collection the collection to use for the immutable set.
32       * @param copyOrWrap WRAP stores a pointer to the original collection
33       */
34      public ImmutableLinkedHashSet(final Set<E> collection, final Immutable copyOrWrap)
35      {
36          super(copyOrWrap == Immutable.COPY ? new LinkedHashSet<E>(collection) : collection, copyOrWrap);
37      }
38  
39      /**
40       * @param collection the collection to use for the immutable set.
41       */
42      public ImmutableLinkedHashSet(final ImmutableAbstractCollection<? extends E> collection)
43      {
44          super(new LinkedHashSet<E>(collection.getUnderlyingCollection()), Immutable.COPY);
45      }
46  
47      /**
48       * @param set the collection to use for the immutable set.
49       * @param copyOrWrap WRAP stores a pointer to the original collection
50       */
51      public ImmutableLinkedHashSet(final ImmutableAbstractSet<E> set, final Immutable copyOrWrap)
52      {
53          super(copyOrWrap == Immutable.COPY ? new LinkedHashSet<E>(set.getUnderlyingCollection())
54                  : set.getUnderlyingCollection(), copyOrWrap);
55      }
56  
57      @Override
58      protected Set<E> getUnderlyingCollection()
59      {
60          return super.getUnderlyingCollection();
61      }
62  
63      @Override
64      public final Set<E> toSet()
65      {
66          return new LinkedHashSet<E>(getUnderlyingCollection());
67      }
68  
69      @Override
70      public final String toString()
71      {
72          Set<E> set = getUnderlyingCollection();
73          if (null == set)
74          {
75              return "ImmutableLinkedHashSet []";
76          }
77          return "ImmutableLinkedHashSet [" + set.toString() + "]";
78      }
79  
80  }