Class LinkedStringList

All Implemented Interfaces:
StringList, Serializable, Cloneable, Iterable<String>, Collection<String>, Deque<String>, List<String>, Queue<String>, DOMStringList

public class LinkedStringList extends LinkedList<String> implements StringList
Implementation of StringList based on LinkedList.
See Also:
  • Constructor Details

    • LinkedStringList

      public LinkedStringList()
      Constructs an empty list.
    • LinkedStringList

      public LinkedStringList(Collection<? extends String> c)
      Constructs a list containing the elements of the specified collection, in the order they are returned by the collection's iterator.
      Parameters:
      c - the collection whose elements are to be placed into this list.
      Throws:
      NullPointerException - if the specified collection is null.
  • Method Details