鸿蒙OS开发文档 鸿蒙OS AbilityInfo.LaunchMode

2024-02-25 开发教程 鸿蒙OS开发文档 匿名 3

AbilityInfo.LaunchMode

java.lang.Object
|---java.lang.Enum<AbilityInfo.LaunchMode&
|---|---ohos.bundle.AbilityInfo.LaunchMode

public static enum AbilityInfo.LaunchMode
extends Enum<AbilityInfo.LaunchMode>

枚举ability启动模式。

您可以保留默认值 SINGLETON。

枚举常量摘要

枚举常量描述
SINGLEMISSION表示该ability在每个任务中只有一个实例。
SINGLETON表示该ability只有一个实例。
STANDARD表示该ability可以有多个实例。

方法总结

修饰符和类型方法描述
static AbilityInfo.LaunchModevalueOf(String name)返回具有指定名称的此类型的枚举常量。
static AbilityInfo.LaunchMode[]values()按照声明的顺序返回包含此枚举类型常量的数组。
从类 java.lang.Enum 继承的方法
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
从类 java.lang.Object 继承的方法
getClass, notify, notifyAll, wait, wait, wait

枚举常量详细信息

SINGLETON

public static final AbilityInfo.LaunchMode SINGLETON

表示该ability只有一个实例。

STANDARD

public static final AbilityInfo.LaunchMode STANDARD

表示该ability可以有多个实例。

SINGLEMISSION

public static final AbilityInfo.LaunchMode SINGLEMISSION

表示该ability在每个任务中只有一个实例。

方法详情

values

public static AbilityInfo.LaunchMode[] values()

按照声明的顺序返回包含此枚举类型常量的数组。 此方法可用于迭代常量,如下所示:

for (AbilityInfo.LaunchMode c : AbilityInfo.LaunchMode.values())    System.out.println(c);

返回:

包含此枚举类型的常量的数组,按声明的顺序排列

valueOf

public static AbilityInfo.LaunchMode valueOf(String name)

返回具有指定名称的此类型的枚举常量。 该字符串必须与用于在此类型中声明枚举常量的标识符完全匹配。 (不允许使用无关的空白字符。)

参数:

参数名称参数描述
name要返回的枚举常量的名称。

返回:

具有指定名称的枚举常量

Throws:

Throw名称Throw描述
IllegalArgumentException如果此枚举类型没有具有指定名称的常量
NullPointerException如果参数为空