java.lang.Object
|---java.lang.Enum<FormState&
|---|---ohos.aafwk.ability.FormState
& public enum FormState
& extends Enum<FormState&
枚举表单的状态。
枚举常量 | 描述 |
---|---|
DEFAULT | 表示表单处于默认状态。 |
READY | 表示表单已准备就绪。 |
UNKNOWN | 表示由于内部错误,表单状态未知。 |
修饰符和类型 | 方法 | 描述 |
---|---|---|
int | getValue() | 获取 FormState 枚举常量表示的表单状态的 int 值。 |
static FormState | intToEnum(int state) | 将给定的 int 值转换为其对应的表示表单状态的枚举常量。 |
static FormState | valueOf(Stringname) | 返回具有指定名称的此类型的枚举常量。 |
static FormState[] | values() | 按照声明的顺序返回包含此枚举类型常量的数组。 |
从 java.lang.Enum 类继承的方法 |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
从 java.lang.Object 类继承的方法 |
---|
getClass, notify, notifyAll, wait, wait, wait |
public static final FormState UNKNOWN
表示由于内部错误,表单状态未知。
public static final FormState DEFAULT
表示表单处于默认状态。
public static final FormState READY
表示表单已准备就绪。
public static FormState[] values()
按照声明的顺序返回包含此枚举类型常量的数组。 此方法可用于迭代常量,如下所示:
for (FormState c : FormState.values()) System.out.println(c);
返回:
包含此枚举类型的常量的数组,按声明的顺序排列
public static FormState valueOf(String name)
返回具有指定名称的此类型的枚举常量。 该字符串必须与用于在此类型中声明枚举常量的标识符完全匹配。 (不允许使用无关的空白字符。)
参数:
参数名称 | 参数描述 |
---|---|
name | 要返回的枚举常量的名称。 |
返回:
具有指定名称的枚举常量
Throws:
Throw名称 | Throw描述 |
---|---|
IllegalArgumentException | 如果此枚举类型没有具有指定名称的常量 |
NullPointerException | 如果参数为空 |
public int getValue()
获取 FormState 枚举常量表示的表单状态的 int 值。
返回:
返回由 FormState 枚举常量表示的表单状态的 int 值。
public static FormState intToEnum(int state)
将给定的 int 值转换为其对应的表示表单状态的枚举常量。
参数:
参数名称 | 参数描述 |
---|---|
state | 指示要转换的 int 值。 |
返回:
返回表示表单状态的枚举常量。
备案信息: 粤ICP备15087711号-2
Copyright © 2008-2024 啊嘎哇在线工具箱 All Rights.
本站所有资料来源于网络,版权归原作者所有,仅作学习交流使用,如不慎侵犯了您的权利,请联系我们。