public enum SendMessageScope extends Enum<SendMessageScope>
| Enum Constant and Description |
|---|
GROUP
分组群发:【订阅号与服务号认证后均可用】
|
OPEN_ID
按OpenId列表发: 订阅号不可用,服务号认证后可用
|
| Modifier and Type | Method and Description |
|---|---|
static SendMessageScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SendMessageScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SendMessageScope GROUP
public static final SendMessageScope OPEN_ID
public static SendMessageScope[] values()
for (SendMessageScope c : SendMessageScope.values()) System.out.println(c);
public static SendMessageScope 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 © 2019. All rights reserved.