Enum Class EventFactoryPlugin.Result
java.lang.Object
java.lang.Enum<EventFactoryPlugin.Result>
org.spongepowered.eventimplgen.factory.plugin.EventFactoryPlugin.Result
- All Implemented Interfaces:
Serializable,Comparable<EventFactoryPlugin.Result>,Constable
- Enclosing interface:
EventFactoryPlugin
-
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 EventFactoryPlugin.ResultReturns the enum constant of this class with the specified name.static EventFactoryPlugin.Result[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SUCCESSS
Claim the property, having successfully processed it. -
IGNORE
Indicate that this plugin does not claim the provided property. -
FAILURE
Indicate that an error occurred while processing this property.This should be accompanied by a logged error message.
By returning this value, final writing of a class file will be suppressed but other properties in the class may be processed.
-
-
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
-