Package org.simpleframework.xml.core
Class SignatureBuilder.ParameterList
- All Implemented Interfaces:
Serializable
,Cloneable
,Iterable<Parameter>
,Collection<Parameter>
,List<Parameter>
,RandomAccess
,SequencedCollection<Parameter>
- Enclosing class:
SignatureBuilder
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
-
Constructor Summary
ConstructorsConstructorDescriptionConstructor for theParameterList
object.Constructor for theParameterList
object. -
Method Summary
Methods inherited from class java.util.ArrayList
add, add, addAll, addAll, addFirst, addLast, clear, clone, contains, ensureCapacity, equals, forEach, get, getFirst, getLast, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeFirst, removeIf, removeLast, 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, reversed
-
Constructor Details
-
ParameterList
public ParameterList()Constructor for theParameterList
object. This creates a default list for building a column for the parameter table it is added to. -
ParameterList
Constructor for theParameterList
object. This creates a list of parameters by using the provided list of parameters, each parameter will be added in order.
-