public enum QChatPushMsgType extends java.lang.Enum<QChatPushMsgType>
枚举常量和说明 |
---|
ALL
推送全部类型消息
|
HIGH_LEVEL
只推送高等级消息
|
HIGH_MID_LEVEL
只推送高、中等级消息
|
INHERIT
继承上一级配置
|
NONE
全部消息都不推送
|
限定符和类型 | 方法和说明 |
---|---|
int |
getValue() |
static QChatPushMsgType |
typeOfValue(int value) |
static QChatPushMsgType |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static QChatPushMsgType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final QChatPushMsgType ALL
public static final QChatPushMsgType HIGH_MID_LEVEL
public static final QChatPushMsgType HIGH_LEVEL
public static final QChatPushMsgType NONE
public static final QChatPushMsgType INHERIT
public static QChatPushMsgType[] values()
for (QChatPushMsgType c : QChatPushMsgType.values()) System.out.println(c);
public static QChatPushMsgType valueOf(java.lang.String name)
name
- 要返回的枚举常量的名称。java.lang.IllegalArgumentException
- 如果该枚举类型没有带有指定名称的常量java.lang.NullPointerException
- 如果参数为空值public int getValue()
public static QChatPushMsgType typeOfValue(int value)