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

src.cdm.base.math.QuantityChangeDirectionEnum.py Maven / Gradle / Ivy

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

__all__ = ['QuantityChangeDirectionEnum']

class QuantityChangeDirectionEnum(Enum):
    """
    Specifies whether a quantity change is an increase, a decrease or a replacement, whereby the quantity is always specified as a positive number.
    """
    DECREASE = "Decrease"
    """
    When the quantity should go down by the specified amount.
    """
    INCREASE = "Increase"
    """
    When the quantity should go up by the specified amount.
    """
    REPLACE = "Replace"
    """
    When the quantity should be replaced by the specified amount.
    """




© 2015 - 2025 Weber Informatics LLC | Privacy Policy