mirror of
https://github.com/lief-project/LIEF
synced 2026-06-08 15:30:44 +00:00
34 lines
567 B
Python
34 lines
567 B
Python
import enum
|
|
from typing import Iterator, Optional, Union
|
|
|
|
|
|
class ANDROID_VERSIONS(enum.Enum):
|
|
@staticmethod
|
|
def from_value(arg: int, /) -> ANDROID_VERSIONS: ...
|
|
|
|
def __eq__(self, arg, /) -> bool: ...
|
|
|
|
def __ne__(self, arg, /) -> bool: ...
|
|
|
|
def __int__(self) -> int: ...
|
|
|
|
UNKNOWN = 0
|
|
|
|
VERSION_601 = 1
|
|
|
|
VERSION_700 = 2
|
|
|
|
VERSION_710 = 3
|
|
|
|
VERSION_712 = 4
|
|
|
|
VERSION_800 = 5
|
|
|
|
VERSION_810 = 6
|
|
|
|
VERSION_900 = 7
|
|
|
|
def code_name(version: ANDROID_VERSIONS) -> str: ...
|
|
|
|
def version_string(version: ANDROID_VERSIONS) -> str: ...
|