Class UniqueList<T>

    • Constructor Detail

      • UniqueList

        public UniqueList()
        Constructs an empty UniqueList.
      • UniqueList

        public UniqueList​(UniqueList<T> list)
        Copy-constructor. Creates a shallow copy of an UniqueList.
        Parameters:
        list - the uniqueList to copy
    • Method Detail

      • add

        public boolean add​(T o)
        Adds an Object to the list.
        Specified by:
        add in interface Collection<T>
        Specified by:
        add in interface List<T>
        Overrides:
        add in class ArrayList<T>
        Parameters:
        o - the Object to add
        Returns:
        true if the Object is added