public enum MsgType extends Enum<MsgType>
| 限定符和类型 | 方法和说明 |
|---|---|
String |
getCaption() |
Integer |
getValue() |
static MsgType |
parse(Integer value) |
String |
toString() |
static MsgType |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static MsgType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final MsgType P2P
public static final MsgType SYS
public static final MsgType NOTICE
public static final MsgType TODO
public static final MsgType DYNAMIC
public static final MsgType RE
public static final MsgType AT
public static final MsgType UP
public static List<com.jfinal.kit.Kv> groupList
public static MsgType[] values()
for (MsgType c : MsgType.values()) System.out.println(c);
public static MsgType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public Integer getValue()
public String getCaption()
Copyright © 2020. All rights reserved.