47 lines
2.0 KiB
Python
47 lines
2.0 KiB
Python
import typing as pytyping
|
|
|
|
__all__: list[str] = ["ARROW", "DEFAULT", "NATIVE", "SPECIAL", "FunctionNullHandling", "PythonUDFType"]
|
|
|
|
class FunctionNullHandling:
|
|
DEFAULT: pytyping.ClassVar[FunctionNullHandling] # value = <FunctionNullHandling.DEFAULT: 0>
|
|
SPECIAL: pytyping.ClassVar[FunctionNullHandling] # value = <FunctionNullHandling.SPECIAL: 1>
|
|
__members__: pytyping.ClassVar[
|
|
dict[str, FunctionNullHandling]
|
|
] # value = {'DEFAULT': <FunctionNullHandling.DEFAULT: 0>, 'SPECIAL': <FunctionNullHandling.SPECIAL: 1>}
|
|
def __eq__(self, other: object) -> bool: ...
|
|
def __getstate__(self) -> int: ...
|
|
def __hash__(self) -> int: ...
|
|
def __index__(self) -> int: ...
|
|
def __init__(self, value: pytyping.SupportsInt) -> None: ...
|
|
def __int__(self) -> int: ...
|
|
def __ne__(self, other: object) -> bool: ...
|
|
def __setstate__(self, state: pytyping.SupportsInt) -> None: ...
|
|
@property
|
|
def name(self) -> str: ...
|
|
@property
|
|
def value(self) -> int: ...
|
|
|
|
class PythonUDFType:
|
|
ARROW: pytyping.ClassVar[PythonUDFType] # value = <PythonUDFType.ARROW: 1>
|
|
NATIVE: pytyping.ClassVar[PythonUDFType] # value = <PythonUDFType.NATIVE: 0>
|
|
__members__: pytyping.ClassVar[
|
|
dict[str, PythonUDFType]
|
|
] # value = {'NATIVE': <PythonUDFType.NATIVE: 0>, 'ARROW': <PythonUDFType.ARROW: 1>}
|
|
def __eq__(self, other: object) -> bool: ...
|
|
def __getstate__(self) -> int: ...
|
|
def __hash__(self) -> int: ...
|
|
def __index__(self) -> int: ...
|
|
def __init__(self, value: pytyping.SupportsInt) -> None: ...
|
|
def __int__(self) -> int: ...
|
|
def __ne__(self, other: object) -> bool: ...
|
|
def __setstate__(self, state: pytyping.SupportsInt) -> None: ...
|
|
@property
|
|
def name(self) -> str: ...
|
|
@property
|
|
def value(self) -> int: ...
|
|
|
|
ARROW: PythonUDFType # value = <PythonUDFType.ARROW: 1>
|
|
DEFAULT: FunctionNullHandling # value = <FunctionNullHandling.DEFAULT: 0>
|
|
NATIVE: PythonUDFType # value = <PythonUDFType.NATIVE: 0>
|
|
SPECIAL: FunctionNullHandling # value = <FunctionNullHandling.SPECIAL: 1>
|