public enum ContactType extends Enum<ContactType>
| Modifier and Type | Method and Description |
|---|---|
static ContactType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContactType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContactType LEGAL
主体为个体工商户/企业/政府机关/事业单位/社会组织
public static final ContactType SUPER
经商户授权办理微信支付业务的人员
public static ContactType[] values()
for (ContactType c : ContactType.values()) System.out.println(c);
public static ContactType 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.