Package cloud.commandframework.bukkit
Enum CloudBukkitCapabilities
- java.lang.Object
-
- java.lang.Enum<CloudBukkitCapabilities>
-
- cloud.commandframework.bukkit.CloudBukkitCapabilities
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CloudBukkitCapabilities>,java.lang.constant.Constable
public enum CloudBukkitCapabilities extends java.lang.Enum<CloudBukkitCapabilities>
Capabilities for the Bukkit module
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASYNCHRONOUS_COMPLETIONBRIGADIERCOMMODORE_BRIGADIERNATIVE_BRIGADIER
-
Method Summary
Modifier and Type Method Description static CloudBukkitCapabilitiesvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CloudBukkitCapabilities[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BRIGADIER
public static final CloudBukkitCapabilities BRIGADIER
-
COMMODORE_BRIGADIER
public static final CloudBukkitCapabilities COMMODORE_BRIGADIER
-
NATIVE_BRIGADIER
public static final CloudBukkitCapabilities NATIVE_BRIGADIER
-
ASYNCHRONOUS_COMPLETION
public static final CloudBukkitCapabilities ASYNCHRONOUS_COMPLETION
-
-
Method Detail
-
values
public static CloudBukkitCapabilities[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CloudBukkitCapabilities valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-