public static enum DialogueNextActionPacket.DialogueGuiAction extends java.lang.Enum<DialogueNextActionPacket.DialogueGuiAction>
Enum Constant and Description |
---|
CLOSE
Will close the GUI upon receiving the response from the server.
|
CONTINUE
Will continue the dialogue without changing the queued dialogue.
|
INSERT_DIALOGUES
Will continue the dialogue after inserting new dialogue at the start of the queue.
|
NEW_DIALOGUES
Will continue the dialogue after replacing the queued dialogue.
|
Modifier and Type | Method and Description |
---|---|
static DialogueNextActionPacket.DialogueGuiAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DialogueNextActionPacket.DialogueGuiAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DialogueNextActionPacket.DialogueGuiAction CLOSE
public static final DialogueNextActionPacket.DialogueGuiAction CONTINUE
public static final DialogueNextActionPacket.DialogueGuiAction NEW_DIALOGUES
public static final DialogueNextActionPacket.DialogueGuiAction INSERT_DIALOGUES
public static DialogueNextActionPacket.DialogueGuiAction[] values()
for (DialogueNextActionPacket.DialogueGuiAction c : DialogueNextActionPacket.DialogueGuiAction.values()) System.out.println(c);
public static DialogueNextActionPacket.DialogueGuiAction 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