Class ListFeatures

All Implemented Interfaces:
Serializable, Cloneable, Iterable<String>, Collection<String>, List<String>, RandomAccess

public class ListFeatures extends ArrayList<String>
An extension of the ArrayList for use in the TabularTranslator.
See Also:
  • Constructor Details

    • ListFeatures

      public ListFeatures()
      Constructs a ListFeatures instance.
      See Also:
    • ListFeatures

      public ListFeatures(int initialCapacity)
      Constructs a ListFeatures instance.
      Parameters:
      initialCapacity - the initial capacity of the list
      Throws:
      IllegalArgumentException - if the specified initial capacity is negative
      See Also:
    • ListFeatures

      public ListFeatures(List<String> source)
      Constructs a ListFeatures instance from a source list.
      Parameters:
      source - the source list
    • ListFeatures

      public ListFeatures(Collection<? extends String> c)
      Constructs a ListFeatures instance.
      Parameters:
      c - the collection whose elements are to be placed into this list
      Throws:
      NullPointerException - if the specified collection is null
      See Also: