public static enum JsonMessage.ClickableType extends java.lang.Enum<JsonMessage.ClickableType>
Enum Constant and Description |
---|
OpenURL |
RunCommand |
SuggestCommand |
Modifier and Type | Method and Description |
---|---|
static JsonMessage.ClickableType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JsonMessage.ClickableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JsonMessage.ClickableType RunCommand
public static final JsonMessage.ClickableType SuggestCommand
public static final JsonMessage.ClickableType OpenURL
public static JsonMessage.ClickableType[] values()
for (JsonMessage.ClickableType c : JsonMessage.ClickableType.values()) System.out.println(c);
public static JsonMessage.ClickableType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null