from enum import Enum class UnitVolumeFormat(str, Enum): """The valid types of volume unit formats.""" # noqa: E501 """# Unit Meter """ # noqa: E501 CUBIC_METER = "cubic_meter" """# Centimeter """ # noqa: E501 CUBIC_CENTIMETER = "cubic_centimeter" """# Millimeter """ # noqa: E501 CUBIC_MILLIMETER = "cubic_millimeter" """# Kilometer """ # noqa: E501 CUBIC_KILOMETER = "cubic_kilometer" """# Unit Liter """ # noqa: E501 LITER = "liter" """# Cubic Inch """ # noqa: E501 CUBIC_INCH = "cubic_inch" """# Foot """ # noqa: E501 CUBIC_FOOT = "cubic_foot" """# Yard """ # noqa: E501 CUBIC_YARD = "cubic_yard" """# Mile """ # noqa: E501 CUBIC_MILE = "cubic_mile" """# Gallon """ # noqa: E501 GALLON = "gallon" """# Quart """ # noqa: E501 QUART = "quart" """# Pint """ # noqa: E501 PINT = "pint" """# Cup """ # noqa: E501 CUP = "cup" """# Fluid Ounce """ # noqa: E501 FLUID_OUNCE = "fluid_ounce" """# Barrel """ # noqa: E501 BARREL = "barrel" """# Bushel """ # noqa: E501 BUSHEL = "bushel" """# Cord """ # noqa: E501 CORD = "cord" """# Cubic Fathom """ # noqa: E501 CUBIC_FATHOM = "cubic_fathom" """# Tablespoon """ # noqa: E501 TABLESPOON = "tablespoon" """# Teaspoon """ # noqa: E501 TEASPOON = "teaspoon" """# Pinch """ # noqa: E501 PINCH = "pinch" """# Dash """ # noqa: E501 DASH = "dash" """# Drop """ # noqa: E501 DROP = "drop" """# Fifth """ # noqa: E501 FIFTH = "fifth" """# Dram """ # noqa: E501 DRAM = "dram" """# Gill """ # noqa: E501 GILL = "gill" """# Peck """ # noqa: E501 PECK = "peck" """# Stack """ # noqa: E501 SACK = "sack" """# Shot """ # noqa: E501 SHOT = "shot" """# Strike """ # noqa: E501 STRIKE = "strike" def __str__(self) -> str: return str(self.value)