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

public static enum EventFactoryPlugin.Result extends Enum<EventFactoryPlugin.Result>
  • Enum Constant Details

    • SUCCESSS

      public static final EventFactoryPlugin.Result SUCCESSS
      Claim the property, having successfully processed it.
    • IGNORE

      public static final EventFactoryPlugin.Result IGNORE
      Indicate that this plugin does not claim the provided property.
    • FAILURE

      public static final EventFactoryPlugin.Result 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

      public static EventFactoryPlugin.Result[] 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

      public static EventFactoryPlugin.Result valueOf(String name)
      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 name
      NullPointerException - if the argument is null