| java.util.AbstractList org.geotools.parameter.ParameterValueList
Constructor Summary | |
public | ParameterValueList(ParameterDescriptorGroup descriptor, List values) Constructs a parameter list. |
ParameterValueList | public ParameterValueList(ParameterDescriptorGroup descriptor, List values)(Code) | | Constructs a parameter list.
Parameters: descriptor - The descriptor for this list. Parameters: values - The parameter values for this list. |
add | public boolean add(Object object)(Code) | | Adds a value to this list. This method is automatically invoked by the default
implementation of some collection methods like
ParameterValueList.addAll .
Method to be removed with J2SE 1.5.
|
add | public boolean add(GeneralParameterValue parameter)(Code) | | Adds a
or an other
to this group. If an existing parameter
is already included for the same
,
then there is a choice:
- For
== 1 , the new parameter will replace the existing parameter.
- For
> 1 , the new parameter will be added. If adding the new parameter will
increase the number past what is allowable by
maximumOccurs , then
an
IllegalStateException will be thrown.
Parameters: parameter - New parameter to be added to this group. true if this object changed as a result of this call. throws: IllegalArgumentException - if the specified parameter is not allowable by thegroups descriptor. throws: InvalidParameterCardinalityException - if adding this parameter would result inmore parameters than allowed by maximumOccurs . |
hashCode | public int hashCode()(Code) | | |
isEmpty | public boolean isEmpty()(Code) | | |
remove | public Object remove(int index)(Code) | | Remove the value at the specified index.
Parameters: index - The index of the value to remove. |
Fields inherited from java.util.AbstractList | protected transient int modCount(Code)(Java Doc)
|
|
|