public enum WeiXinConvertMode extends Enum<WeiXinConvertMode>
Enum Constant and Description |
---|
ALL
同时包含两种
|
RECEIVE
处理微信服务器的推送报文
|
SEND
处理发送微信服务器的回复报文
|
Modifier and Type | Method and Description |
---|---|
static WeiXinConvertMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WeiXinConvertMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WeiXinConvertMode SEND
public static final WeiXinConvertMode RECEIVE
public static final WeiXinConvertMode ALL
public static WeiXinConvertMode[] values()
for (WeiXinConvertMode c : WeiXinConvertMode.values()) System.out.println(c);
public static WeiXinConvertMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2006–2018 TinyGroup. All rights reserved.