public enum ReceiverType extends Enum<ReceiverType>
| 枚举常量和说明 |
|---|
MERCHANT_ID
商户号
|
PERSONAL_OPENID
个人openid(由父商户APPID转换得到)
|
PERSONAL_SUB_OPENID
个人sub_openid(由子商户APPID转换得到),服务商模式
|
public static final ReceiverType MERCHANT_ID
public static final ReceiverType PERSONAL_OPENID
public static final ReceiverType PERSONAL_SUB_OPENID
public static ReceiverType[] values()
for (ReceiverType c : ReceiverType.values()) System.out.println(c);
public static ReceiverType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2022. All rights reserved.