blob: 8246b3565d4c58c03c395145cb0e8a3e8231de26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
from enum import Enum, auto
from typing import Self, TypeGuard, TypeVar
from ._base import CRU
_T = TypeVar("_T")
class CruConstantBase(Enum):
@classmethod
def check(cls, v: _T | Self) -> TypeGuard[Self]:
return isinstance(v, cls)
@classmethod
def check_not(cls, v: _T | Self) -> TypeGuard[_T]:
return not cls.check(v)
@classmethod
def value(cls) -> Self:
return cls.VALUE # type: ignore
class CruNotFound(CruConstantBase):
VALUE = auto()
class CruUseDefault(CruConstantBase):
VALUE = auto()
class CruDontChange(CruConstantBase):
VALUE = auto()
class CruNoValue(CruConstantBase):
VALUE = auto()
class CruPlaceholder(CruConstantBase):
VALUE = auto()
CRU.add_objects(
CruNotFound,
CruUseDefault,
CruDontChange,
CruNoValue,
CruPlaceholder,
)
|