public enum WeiXinHandlerMode extends Enum<WeiXinHandlerMode>
| Enum Constant and Description |
|---|
RECEIVE
处理接收操作
|
SEND_INPUT
处理发送操作的输入对象
|
SEND_OUPUT
处理发送操作的输出对象
|
| Modifier and Type | Method and Description |
|---|---|
static WeiXinHandlerMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WeiXinHandlerMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WeiXinHandlerMode SEND_INPUT
public static final WeiXinHandlerMode SEND_OUPUT
public static final WeiXinHandlerMode RECEIVE
public static WeiXinHandlerMode[] values()
for (WeiXinHandlerMode c : WeiXinHandlerMode.values()) System.out.println(c);
public static WeiXinHandlerMode 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.