public enum ReplyMarkupType extends Enum<ReplyMarkupType>
| Enum Constant and Description |
|---|
FORCE_REPLY |
INLINE_KEYBOARD_MARKUP |
KEYBOARD_HIDE |
KEYBOARD_MARKUP |
KEYBOARD_REMOVE |
| Modifier and Type | Method and Description |
|---|---|
static ReplyMarkupType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReplyMarkupType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReplyMarkupType KEYBOARD_HIDE
public static final ReplyMarkupType KEYBOARD_MARKUP
public static final ReplyMarkupType FORCE_REPLY
public static final ReplyMarkupType KEYBOARD_REMOVE
public static final ReplyMarkupType INLINE_KEYBOARD_MARKUP
public static ReplyMarkupType[] values()
for (ReplyMarkupType c : ReplyMarkupType.values()) System.out.println(c);
public static ReplyMarkupType 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.