Class SignatureBuilder.ParameterList

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Cloneable, java.lang.Iterable<Parameter>, java.util.Collection<Parameter>, java.util.List<Parameter>, java.util.RandomAccess
    Enclosing class:
    SignatureBuilder

    private static class SignatureBuilder.ParameterList
    extends java.util.ArrayList<Parameter>
    The ParameterList object is used to represent a column of parameters within a table. A column will contain each parameter and annotation pair extracted from an index in the constructor, a permutation can come from a union annotation,
    • Field Summary

      • Fields inherited from class java.util.AbstractList

        modCount
    • Method Summary

      • Methods inherited from class java.util.ArrayList

        add, add, addAll, addAll, clear, clone, contains, ensureCapacity, equals, forEach, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeIf, removeRange, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray, trimToSize
      • Methods inherited from class java.util.AbstractCollection

        containsAll, toString
      • Methods inherited from class java.lang.Object

        finalize, getClass, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface java.util.Collection

        parallelStream, stream, toArray
      • Methods inherited from interface java.util.List

        containsAll
    • Constructor Detail

      • ParameterList

        public ParameterList()
        Constructor for the ParameterList object. This creates a default list for building a column for the parameter table it is added to.
      • ParameterList

        public ParameterList​(SignatureBuilder.ParameterList list)
        Constructor for the ParameterList object. This creates a list of parameters by using the provided list of parameters, each parameter will be added in order.