org.opengis.parameter
Interface ParameterValueGroup

All Superinterfaces:
Cloneable, GeneralParameterValue

@UML(identifier="CC_ParameterValueGroup",
     specification=ISO_19111)
public interface ParameterValueGroup
extends GeneralParameterValue

A group of related parameter values. The same group can be repeated more than once in an operation or higher level ParameterValueGroup, if those instances contain different values of one or more ParameterValues which suitably distinquish among those groups.

Since:
GeoAPI 1.0
Version:
Abstract specification 2.0
See Also:
ParameterDescriptorGroup, ParameterValue

Method Summary
 ParameterValueGroup addGroup(String name)
          Create a new group of the specified name.
 Object clone()
          Returns a copy of this group of parameter values.
 List<ParameterValueGroup> groups(String name)
          Returns all subgroups with the specified name.
 ParameterValue parameter(String name)
          Returns the value in this group for the specified identifier code.
 List<GeneralParameterValue> values()
          Returns the values in this group.
 
Methods inherited from interface GeneralParameterValue
getDescriptor
 

Method Detail

values

@UML(identifier="includesValue",
     obligation=MANDATORY,
     specification=ISO_19111)
List<GeneralParameterValue> values()
Returns the values in this group. The returned list may or may not be unmodifiable; this is implementation-dependent. However, if some aspects of this list are modifiable, then any modification shall be reflected back into this ParameterValueGroup. More specifically:


parameter

@Extension
ParameterValue parameter(String name)
                         throws ParameterNotFoundException
Returns the value in this group for the specified identifier code. If no parameter value is found but a parameter descriptor is found (which may occurs if the parameter is optional, i.e. minimumOccurs == 0), then a parameter value is automatically created and initialized to its default value (if any).

This convenience method provides a way to get and set parameter values by name. For example the following idiom fetches a floating point value for the "false_easting" parameter:

double value = parameter("false_easting").doubleValue();

This method do not search recursively in subgroups. This is because more than one subgroup may exist for the same descriptor. The user must query all subgroups and select explicitly the appropriate one to use.

Parameters:
name - The case insensitive identifier code of the parameter to search for.
Returns:
The parameter value for the given identifier code.
Throws:
ParameterNotFoundException - if there is no parameter value for the given identifier code.

groups

@Extension
List<ParameterValueGroup> groups(String name)
                                 throws ParameterNotFoundException
Returns all subgroups with the specified name. This method do not create new groups. If the requested group is optional (i.e. minimumOccurs == 0) and no value were defined previously, then this method returns an empty set.

Parameters:
name - The case insensitive identifier code of the parameter group to search for.
Returns:
The set of all parameter group for the given identifier code.
Throws:
ParameterNotFoundException - if no descriptor was found for the given name.

addGroup

@Extension
ParameterValueGroup addGroup(String name)
                             throws ParameterNotFoundException,
                                    IllegalStateException
Create a new group of the specified name. The specified name must be the identifier code of a descriptor group.

Parameters:
name - The case insensitive identifier code of the parameter group to create.
Returns:
A newly created parameter group for the given identifier code.
Throws:
ParameterNotFoundException - if no descriptor was found for the given name.
IllegalStateException - if this parameter group already contains the maximum number of occurences of subgroups of the given name.

clone

Object clone()
Returns a copy of this group of parameter values. Included parameter values and subgroups are cloned recursively.

Specified by:
clone in interface GeneralParameterValue
Returns:
A copy of this group of parameter values.
See Also:
Object.clone()


Copyright © 1994-2008 Open Geospatial Consortium. All Rights Reserved.