|
| 1 | +import typing as pytyping |
| 2 | + |
| 3 | +__all__: list[str] = ["ARROW", "DEFAULT", "NATIVE", "SPECIAL", "FunctionNullHandling", "PythonUDFType"] |
| 4 | + |
| 5 | +class FunctionNullHandling: |
| 6 | + DEFAULT: pytyping.ClassVar[FunctionNullHandling] # value = <FunctionNullHandling.DEFAULT: 0> |
| 7 | + SPECIAL: pytyping.ClassVar[FunctionNullHandling] # value = <FunctionNullHandling.SPECIAL: 1> |
| 8 | + __members__: pytyping.ClassVar[ |
| 9 | + dict[str, FunctionNullHandling] |
| 10 | + ] # value = {'DEFAULT': <FunctionNullHandling.DEFAULT: 0>, 'SPECIAL': <FunctionNullHandling.SPECIAL: 1>} |
| 11 | + def __eq__(self, other: object) -> bool: ... |
| 12 | + def __getstate__(self) -> int: ... |
| 13 | + def __hash__(self) -> int: ... |
| 14 | + def __index__(self) -> int: ... |
| 15 | + def __init__(self, value: pytyping.SupportsInt) -> None: ... |
| 16 | + def __int__(self) -> int: ... |
| 17 | + def __ne__(self, other: object) -> bool: ... |
| 18 | + def __setstate__(self, state: pytyping.SupportsInt) -> None: ... |
| 19 | + @property |
| 20 | + def name(self) -> str: ... |
| 21 | + @property |
| 22 | + def value(self) -> int: ... |
| 23 | + |
| 24 | +class PythonUDFType: |
| 25 | + ARROW: pytyping.ClassVar[PythonUDFType] # value = <PythonUDFType.ARROW: 1> |
| 26 | + NATIVE: pytyping.ClassVar[PythonUDFType] # value = <PythonUDFType.NATIVE: 0> |
| 27 | + __members__: pytyping.ClassVar[ |
| 28 | + dict[str, PythonUDFType] |
| 29 | + ] # value = {'NATIVE': <PythonUDFType.NATIVE: 0>, 'ARROW': <PythonUDFType.ARROW: 1>} |
| 30 | + def __eq__(self, other: object) -> bool: ... |
| 31 | + def __getstate__(self) -> int: ... |
| 32 | + def __hash__(self) -> int: ... |
| 33 | + def __index__(self) -> int: ... |
| 34 | + def __init__(self, value: pytyping.SupportsInt) -> None: ... |
| 35 | + def __int__(self) -> int: ... |
| 36 | + def __ne__(self, other: object) -> bool: ... |
| 37 | + def __setstate__(self, state: pytyping.SupportsInt) -> None: ... |
| 38 | + @property |
| 39 | + def name(self) -> str: ... |
| 40 | + @property |
| 41 | + def value(self) -> int: ... |
| 42 | + |
| 43 | +ARROW: PythonUDFType # value = <PythonUDFType.ARROW: 1> |
| 44 | +DEFAULT: FunctionNullHandling # value = <FunctionNullHandling.DEFAULT: 0> |
| 45 | +NATIVE: PythonUDFType # value = <PythonUDFType.NATIVE: 0> |
| 46 | +SPECIAL: FunctionNullHandling # value = <FunctionNullHandling.SPECIAL: 1> |
0 commit comments