# -*- coding: utf-8 -*-# pylint: disable=line-too-long,consider-using-f-string"""ToS (DS Field) Delay==========================.. module:: pcapkit.const.ipv4.tos_delThis module contains the constant enumeration for **ToS (DS Field) Delay**,which is automatically generated from :class:`pcapkit.vendor.ipv4.tos_del.ToSDelay`."""fromaenumimportIntEnum,extend_enum__all__=['ToSDelay']
[docs]classToSDelay(IntEnum):"""[ToSDelay] ToS (DS Field) Delay"""NORMAL=0LOW=1@staticmethoddefget(key:'int | str',default:'int'=-1)->'ToSDelay':"""Backport support for original codes. Args: key: Key to get enum item. default: Default value if not found. :meta private: """ifisinstance(key,int):returnToSDelay(key)ifkeynotinToSDelay._member_map_:# pylint: disable=no-memberreturnextend_enum(ToSDelay,key,default)returnToSDelay[key]# type: ignore[misc]
[docs]@classmethoddef_missing_(cls,value:'int')->'ToSDelay':"""Lookup function used when value is not found. Args: value: Value to get enum item. """ifnot(isinstance(value,int)and0<=value<=1):raiseValueError('%r is not a valid %s'%(value,cls.__name__))returnextend_enum(cls,'Unassigned_%d'%value,value)