param.parameterized.Parameters.__getattr__#

Parameters.__getattr__(attr)[source]#

Handle attribute access for Parameter objects.

This method extends standard attribute access to support Parameters defined in the object. If the requested attribute corresponds to a Parameter, it retrieves the Parameter value.

Parameters:

attr (str) – The name of the attribute to access.

Return type:

The value of the Parameter if it exists.

Raises:

AttributeError – If the class is not initialized or the attribute does not exist in the parameter objects.