- All Known Implementing Classes:
AbstractMathTransform
,AbstractMathTransform.Inverse
,AbstractMathTransform1D
,AbstractMathTransform1D.Inverse
,AbstractMathTransform2D
,AbstractMathTransform2D.Inverse
,DatumShiftTransform
,DefaultConversion
,DefaultTransformation
,EllipsoidToCentricTransform
,InterpolatedGeocentricTransform
,InterpolatedMolodenskyTransform
,InterpolatedTransform
,MolodenskyTransform
,PassThroughTransform
,PoleRotation
,WraparoundTransform
public interface Parameterized
An object which can supply its parameters in a
ParameterValueGroup
.
All Apache SIS implementations of MathTransform
implement this interface.- Since:
- 0.5
-
Method Summary
Modifier and TypeMethodDescriptionReturns the parameter descriptors for this parameterized object, ornull
if unknown.Returns the parameter values for this parameterized object, ornull
if unknown.
-
Method Details
-
getParameterDescriptors
ParameterDescriptorGroup getParameterDescriptors()Returns the parameter descriptors for this parameterized object, ornull
if unknown.- Returns:
- the parameter descriptors for this object, or
null
.
-
getParameterValues
ParameterValueGroup getParameterValues()Returns the parameter values for this parameterized object, ornull
if unknown.Modifying parameter values
Unless explicitly allowed by the implementation class, callers should not modify the values returned by this method. Implementers are encouraged to protect their internal data by returning an unmodifiable view or a copy of their parameters. If the caller wishes to edit parameter values, then (s)he should clone the parameters before to modify them, then use the modified parameters for creating a newParameterized
object.- Returns:
- the parameter values for this object, or
null
if unknown.
-