Package com.stardevllc.starevents
Enum Class StarEvents.Status
- All Implemented Interfaces:
Serializable,Comparable<StarEvents.Status>,Constable
- Enclosing class:
StarEvents
Enum for the status of a listener
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic StarEvents.StatusReturns the enum constant of this class with the specified name.static StarEvents.Status[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SUCCESS
The success status if a listener was registered successfully -
FAIL
The fail status for if a listener failed to register -
NULL
The null status if the provided listener was null
-
-
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
-