public enum SendMessageType extends Enum<SendMessageType>
| Modifier and Type | Method and Description |
|---|---|
String |
desc() |
String |
value() |
static SendMessageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SendMessageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SendMessageType TEXT
public static final SendMessageType IMAGE
public static final SendMessageType VOICE
public static final SendMessageType VIDEO
public static final SendMessageType NEWS
public static final SendMessageType CARD
public static SendMessageType[] values()
for (SendMessageType c : SendMessageType.values()) System.out.println(c);
public static SendMessageType 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 nullpublic String value()
public String desc()
Copyright © 2019. All rights reserved.