Package org.hipparchus.ode
Class AbstractParameterizable
java.lang.Object
org.hipparchus.ode.AbstractParameterizable
- All Implemented Interfaces:
Parameterizable
This abstract class provides boilerplate parameters list.
-
Constructor Summary
ModifierConstructorDescriptionprotected
AbstractParameterizable
(String... names) Simple constructor.protected
AbstractParameterizable
(Collection<String> names) Simple constructor. -
Method Summary
Modifier and TypeMethodDescriptionvoid
complainIfNotSupported
(String name) Check if a parameter is supported and throw an IllegalArgumentException if not.Get the names of the supported parameters.boolean
isSupported
(String name) Check if a parameter is supported.
-
Constructor Details
-
AbstractParameterizable
Simple constructor.- Parameters:
names
- names of the supported parameters
-
AbstractParameterizable
Simple constructor.- Parameters:
names
- names of the supported parameters
-
-
Method Details
-
getParametersNames
Get the names of the supported parameters.- Specified by:
getParametersNames
in interfaceParameterizable
- Returns:
- parameters names
- See Also:
-
isSupported
Check if a parameter is supported.Supported parameters are those listed by
Parameterizable.getParametersNames()
.- Specified by:
isSupported
in interfaceParameterizable
- Parameters:
name
- parameter name to check- Returns:
- true if the parameter is supported
- See Also:
-
complainIfNotSupported
Check if a parameter is supported and throw an IllegalArgumentException if not.- Parameters:
name
- name of the parameter to check- Throws:
MathIllegalArgumentException
- if the parameter is not supported- See Also:
-