Uses of Interface
org.geotools.api.parameter.ParameterValue
-
Packages that use ParameterValue Package Description org.geotools.api.parameter Description and storage of parameter values.org.geotools.parameter Parameter implementation.org.geotools.referencing.operation Coordinate operation implementation. -
-
Uses of ParameterValue in org.geotools.api.parameter
Methods in org.geotools.api.parameter that return ParameterValue Modifier and Type Method Description ParameterValue
ParameterValue. clone()
Returns a copy of this parameter value.ParameterValue<T>
ParameterDescriptor. createValue()
Creates a new instance of parameter value initialized with the default value.ParameterValue<?>
ParameterValueGroup. parameter(String name)
Returns the value in this group for the specified identifier code. -
Uses of ParameterValue in org.geotools.parameter
Classes in org.geotools.parameter that implement ParameterValue Modifier and Type Class Description class
FloatParameter
A parameter value as a floating point (double precision) number.class
Parameter<T>
A parameter value used by an operation method.Methods in org.geotools.parameter that return ParameterValue Modifier and Type Method Description static <T> ParameterValue<T>
Parameters. cast(ParameterValue<?> value, Class<T> type)
Casts the given parameter value to the given type.ParameterValue<T>
DefaultParameterDescriptor. createValue()
Creates a new instance of parameter value initialized with the default value.ParameterValue
ImagingParameters. parameter(String name)
Returns the value in this group for the specified identifier code.ParameterValue<Double>
MatrixParameters. parameter(int row, int column)
Returns the value in this group for a matrix element at the specified index.ParameterValue<?>
MatrixParameters. parameter(String name)
Returns the value in this group for the specified name.ParameterValue
ParameterGroup. parameter(String name)
Returns the value in this group for the specified identifier code.Methods in org.geotools.parameter with parameters of type ParameterValue Modifier and Type Method Description static <T> ParameterValue<T>
Parameters. cast(ParameterValue<?> value, Class<T> type)
Casts the given parameter value to the given type.static boolean
Parameters. isValid(ParameterValue<?> parameter)
Checks a parameter value against its parameter descriptor. -
Uses of ParameterValue in org.geotools.referencing.operation
Methods in org.geotools.referencing.operation that return ParameterValue Modifier and Type Method Description protected static <T> ParameterValue<T>
MathTransformProvider. getParameter(ParameterDescriptor<T> param, ParameterValueGroup group)
Returns the parameter value for the specified operation parameter.
-