刷写方法

public final enum FlashingMethod
extends Enum<FlashingMethod>

java.lang.Object
   ↳ java.lang.Enum<com.android.tradefed.targetprep.FlashingMethod>
     ↳ com.android.tradefed.targetprep.FlashingMethod


用于描述用于刷写被测设备的方法的枚举

摘要

枚举值

FlashingMethod  FASTBOOT_FLASH_ALL

已通过“fastboot flashall”命令在分区映像目录上刷写设备

FlashingMethod  FASTBOOT_FLASH_ALL_FUSE_ZIP

设备是通过“fastboot flashall”命令刷写到分区映像目录上的,而分区映像是通过 fuse-zip 从设备映像 zip 文件装载的

FlashingMethod  FASTBOOT_UNCATEGORIZED

fastboot 刷写的回退,但未进一步分类

FlashingMethod  FASTBOOT_UPDATE

通过包含设备映像 zip 的“fastboot update”命令刷写设备

FlashingMethod  FLASHSTATION

设备是使用 cl_flashstation 脚本通过 Flashstation 刷写的

FlashingMethod  UNKNOWN

未明确跟踪的闪烁方法的回退方案

FlashingMethod  USERSPACE_OTA

设备在用户空间中通过模拟 OTA 刷写

公共方法

static FlashingMethod valueOf(String name)
static final FlashingMethod[] values()

枚举值

FASTBOOT_FLASH_ALL

public static final FlashingMethod FASTBOOT_FLASH_ALL

通过对分区映像目录使用 `fastboot flashall` 命令刷写了设备

FASTBOOT_FLASH_ALL_FUSE_ZIP

public static final FlashingMethod FASTBOOT_FLASH_ALL_FUSE_ZIP

通过 `fastboot flashall` 命令对分区映像目录进行了刷写,该目录是通过 fuse-zip 从设备映像 zip 文件挂载的

FASTBOOT_UNCATEGORIZED

public static final FlashingMethod FASTBOOT_UNCATEGORIZED

fastboot 刷写的回退,但没有进一步分类

FASTBOOT_UPDATE

public static final FlashingMethod FASTBOOT_UPDATE

通过包含设备映像 zip 的“fastboot update”命令刷写设备

FLASHSTATION

public static final FlashingMethod FLASHSTATION

设备是使用 cl_flashstation 脚本通过 Flashstation 刷写的

未知

public static final FlashingMethod UNKNOWN

未明确跟踪的闪烁方法的回退

USERSPACE_OTA

public static final FlashingMethod USERSPACE_OTA

在用户空间中通过模拟 OTA 刷写设备

公共方法

valueOf

public static FlashingMethod valueOf (String name)

参数
name String

返回
FlashingMethod

values

public static final FlashingMethod[] values ()

返回
FlashingMethod[]