public enum KeyType extends Enum<KeyType>
| 枚举常量和说明 |
|---|
FUNC_BACK
功能键:返回
|
FUNC_DELETE
功能键:删除
|
FUNC_MORE
功能键:更多
|
FUNC_OK
功能键:确定
|
GENERAL
文本类型
|
public static final KeyType GENERAL
public static final KeyType FUNC_DELETE
public static final KeyType FUNC_OK
public static final KeyType FUNC_MORE
public static final KeyType FUNC_BACK
public static KeyType[] values()
for (KeyType c : KeyType.values()) System.out.println(c);
public static KeyType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值