org.apache.commons.math.ode
Interface Parameterizable

All Known Subinterfaces:
ParameterizedODE, ParameterJacobianProvider
All Known Implementing Classes:
AbstractParameterizable

public interface Parameterizable

This interface enables to process any parameterizable object.

Since:
3.0
Version:
$Id: Parameterizable.java 1175409 2011-09-25 15:04:39Z luc $

Method Summary
 java.util.Collection<java.lang.String> getParametersNames()
          Get the names of the supported parameters.
 boolean isSupported(java.lang.String name)
          Check if a parameter is supported.
 

Method Detail

getParametersNames

java.util.Collection<java.lang.String> getParametersNames()
Get the names of the supported parameters.

Returns:
parameters names
See Also:
isSupported(String)

isSupported

boolean isSupported(java.lang.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()


Copyright © 2003-2011 The Apache Software Foundation. All Rights Reserved.