Package org.geotools.api.parameter
Interface GeneralParameterValue
-
- All Known Subinterfaces:
ParameterValue<T>
,ParameterValueGroup
- All Known Implementing Classes:
AbstractParameter
,FloatParameter
,ImagingParameters
,MatrixParameters
,Parameter
,ParameterGroup
public interface GeneralParameterValue extends Cloneable
Abstract parameter value or group of parameter values.- Since:
- GeoAPI 1.0
- Author:
- Martin Desruisseaux (IRD), Jody Garnett (Refractions Research)
- See Also:
GeneralParameterDescriptor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GeneralParameterValue
clone()
Returns a copy of this parameter value or group.GeneralParameterDescriptor
getDescriptor()
Returns the abstract definition of this parameter or group of parameters.
-
-
-
Method Detail
-
getDescriptor
GeneralParameterDescriptor getDescriptor()
Returns the abstract definition of this parameter or group of parameters.- Returns:
- The abstract definition of this parameter or group of parameters.
-
clone
GeneralParameterValue clone()
Returns a copy of this parameter value or group.- Specified by:
clone
in interfaceCloneable
- Returns:
- A copy of this parameter value or group.
- See Also:
Object.clone()
-
-