Package net.md_5.bungee.api.chat
Enum ClickEvent.Action
- java.lang.Object
-
- java.lang.Enum<ClickEvent.Action>
-
- net.md_5.bungee.api.chat.ClickEvent.Action
-
- All Implemented Interfaces:
Serializable,Comparable<ClickEvent.Action>
- Enclosing class:
- ClickEvent
public static enum ClickEvent.Action extends Enum<ClickEvent.Action>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHANGE_PAGEChange to the page number given byClickEvent.valuein a book.COPY_TO_CLIPBOARDCopy the string given byClickEvent.valueinto the player's clipboard.OPEN_FILEOpen a file at the path given byClickEvent.value.OPEN_URLOpen a url at the path given byClickEvent.value.RUN_COMMANDRun the command given byClickEvent.value.SUGGEST_COMMANDInserts the string given byClickEvent.valueinto the player's text box.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ClickEvent.ActionvalueOf(String name)Returns the enum constant of this type with the specified name.static ClickEvent.Action[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OPEN_URL
public static final ClickEvent.Action OPEN_URL
Open a url at the path given byClickEvent.value.
-
OPEN_FILE
public static final ClickEvent.Action OPEN_FILE
Open a file at the path given byClickEvent.value.
-
RUN_COMMAND
public static final ClickEvent.Action RUN_COMMAND
Run the command given byClickEvent.value.
-
SUGGEST_COMMAND
public static final ClickEvent.Action SUGGEST_COMMAND
Inserts the string given byClickEvent.valueinto the player's text box.
-
CHANGE_PAGE
public static final ClickEvent.Action CHANGE_PAGE
Change to the page number given byClickEvent.valuein a book.
-
COPY_TO_CLIPBOARD
public static final ClickEvent.Action COPY_TO_CLIPBOARD
Copy the string given byClickEvent.valueinto the player's clipboard.
-
-
Method Detail
-
values
public static ClickEvent.Action[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ClickEvent.Action c : ClickEvent.Action.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ClickEvent.Action valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-