Interface Parameterized

All Known Implementing Classes:
Abstract­Math­Transform, Abstract­Math­Transform​.Inverse, Abstract­Math­Transform1D, Abstract­Math­Transform1D​.Inverse, Abstract­Math­Transform2D, Abstract­Math­Transform2D​.Inverse, Datum­Shift­Transform, Default­Conversion, Default­Transformation, Ellipsoid­To­Centric­Transform, Interpolated­Geocentric­Transform, Interpolated­Molodensky­Transform, Interpolated­Transform, Molodensky­Transform, Pass­Through­Transform, Pole­Rotation, Wraparound­Transform

public interface Parameterized
An object which can supply its parameters in a Parameter­Value­Group. All Apache SIS implementations of Math­Transform implement this interface.
Since:
0.5
  • Method Details

    • getParameterDescriptors

      ParameterDescriptorGroup getParameterDescriptors()
      Returns the parameter descriptors for this parameterized object, or null if unknown.
      Returns:
      the parameter descriptors for this object, or null.
    • getParameterValues

      ParameterValueGroup getParameterValues()
      Returns the parameter values for this parameterized object, or null 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 new Parameterized object.
      Returns:
      the parameter values for this object, or null if unknown.