All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.cdm.observable.asset.InterpolationMethodEnum.py Maven / Gradle / Ivy

There is a newer version: 6.0.0-dev.89
Show newest version
# pylint: disable=missing-module-docstring, invalid-name, line-too-long
from enum import Enum

__all__ = ['InterpolationMethodEnum']

class InterpolationMethodEnum(Enum):
    """
    The enumerated values to specify the interpolation method, e.g. linear.
    """
    LINEAR = "Linear"
    """
    Linear Interpolation applicable.
    """
    LINEAR_ZERO_YIELD = "LinearZeroYield"
    """
    Linear Interpolation applicable.
    """
    NONE = "None"
    """
    No Interpolation applicable.
    """




© 2015 - 2025 Weber Informatics LLC | Privacy Policy