Package org.kingdoms.commands
Enum Class CommandResult
- All Implemented Interfaces:
Serializable,Comparable<CommandResult>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionWhen an unhandled error occurred during command execution.When a command has failed to execute due to incorrect arguments, state, permissions, etc.When the command has executed successfully, but is expected to be run multiple times with different arguments or states.When the command has successfully executed with the correct arguments and state and the executor of the command got the desired results. -
Method Summary
Modifier and TypeMethodDescriptionstatic CommandResultReturns the enum constant of this class with the specified name.static CommandResult[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SUCCESS
When the command has successfully executed with the correct arguments and state and the executor of the command got the desired results. -
FAILED
When a command has failed to execute due to incorrect arguments, state, permissions, etc. -
PARTIAL
When the command has executed successfully, but is expected to be run multiple times with different arguments or states. (This doesn't affect command cooldowns) -
ERROR
When an unhandled error occurred during command execution.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-