Package org.simpleframework.xml.core
Class SignatureBuilder.ParameterList
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractList<E>
-
- java.util.ArrayList<Parameter>
-
- org.simpleframework.xml.core.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>
TheParameterListobject 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,
-
-
Constructor Summary
Constructors Constructor Description ParameterList()Constructor for theParameterListobject.ParameterList(SignatureBuilder.ParameterList list)Constructor for theParameterListobject.
-
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
-
-
-
-
Constructor Detail
-
ParameterList
public ParameterList()
Constructor for theParameterListobject. 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 theParameterListobject. This creates a list of parameters by using the provided list of parameters, each parameter will be added in order.
-
-