public enum ReceiverType extends Enum<ReceiverType>
| Enum Constant and Description |
|---|
MERCHANT_ID
商户号
|
PERSONAL_OPENID
个人openid(由父商户APPID转换得到)
|
PERSONAL_SUB_OPENID
个人sub_openid(由子商户APPID转换得到),服务商模式
|
| Modifier and Type | Method and Description |
|---|---|
static ReceiverType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReceiverType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
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 - 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 © 2023. All rights reserved.