Package org.hipparchus.ode
Interface Parameterizable
-
- All Known Subinterfaces:
NamedParameterJacobianProvider
,ODEJacobiansProvider
,ParameterJacobianProvider
,ParametersController
- All Known Implementing Classes:
AbstractParameterizable
public interface Parameterizable
This interface enables to process any parameterizable object.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<String>
getParametersNames()
Get the names of the supported parameters.boolean
isSupported(String name)
Check if a parameter is supported.
-
-
-
Method Detail
-
getParametersNames
List<String> getParametersNames()
Get the names of the supported parameters.- Returns:
- parameters names
- See Also:
isSupported(String)
-
isSupported
boolean isSupported(String name)
Check if a parameter is supported.Supported parameters are those listed by
getParametersNames()
.- Parameters:
name
- parameter name to check- Returns:
- true if the parameter is supported
- See Also:
getParametersNames()
-
-