Package org.geotools.parameter
Parameter implementation.
An explanation for this package is provided in the
OpenGIS® javadoc.
The remaining discussion on this page is specific to the Geotools implementation.
The starting point is often org.opengis.parameter.ParameterDescriptorGroup
.
Operation implementations need to defines one. Operation usages typically invoke its
createValue
method
and fill the returned object with parameter values. This Geotools package provides the
following implementations:
DefaultParameterDescriptorGroup
for the general case.ImagingParameterDescriptors
for wrappers around Java Advanced Imaging's parameters.MatrixParameterDescriptors
for matrix parameters, including the number of rows and columns. The total number of parameters in this group vary according the number of rows and columns.
-
Class Summary Class Description AbstractParameter Abstract parameter value or group of parameter values.AbstractParameterDescriptor Abstract definition of a parameter or group of parameters used by an operation method.DefaultParameterDescriptor<T> The definition of a parameter used by an operation method.DefaultParameterDescriptorGroup The definition of a group of related parameters used by an operation method.FloatParameter A parameter value as a floating point (double precision) number.ImagingParameterDescriptors Wraps a JAI'sParameterListDescriptor
.ImagingParameters Wraps a JAI'sParameterList
.MatrixParameterDescriptors A parameter group for matrix elements.MatrixParameters The values for a group of matrix parameters.Parameter<T> A parameter value used by an operation method.ParameterGroup A group of related parameter values.Parameters Utility class for methods helping implementing, and working with the parameter API fromorg.geotools.api.parameter
package.ParameterWriter Format parameter descriptors or parameter values in a tabular format.