Source code for kappa_sdk.enumerator.extrapolation_method_enum
from enum import Enum
[docs]
class ExtrapolationMethodEnum(Enum):
    """An enumeration of the extrapolation methods.
    """
    zero = "Zero"
    absent_value = "AbsentValue"
    boundary_value = "BoundaryValue"
    use_slope = "UseSlope"