public enum CallbackQueryType extends Enum<CallbackQueryType>
| Enum Constant and Description |
|---|
INLINE_GAME |
INLINE_MESSAGE |
MESSAGE |
MESSAGE_GAME |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static CallbackQueryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CallbackQueryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CallbackQueryType MESSAGE
public static final CallbackQueryType INLINE_MESSAGE
public static final CallbackQueryType INLINE_GAME
public static final CallbackQueryType MESSAGE_GAME
public static final CallbackQueryType UNKNOWN
public static CallbackQueryType[] values()
for (CallbackQueryType c : CallbackQueryType.values()) System.out.println(c);
public static CallbackQueryType 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 © 2017. All rights reserved.