Enum Class PluginContract.Role

java.lang.Object
java.lang.Enum<PluginContract.Role>
io.gdcc.spi.meta.annotations.PluginContract.Role
All Implemented Interfaces:
Serializable, Comparable<PluginContract.Role>, Constable
Enclosing class:
PluginContract

public static enum PluginContract.Role extends Enum<PluginContract.Role>
Distinguishes directly loadable base contracts from additional capability contracts.
  • Enum Constant Details

    • BASE

      public static final PluginContract.Role BASE
      A directly loadable plugin contract.
    • CAPABILITY

      public static final PluginContract.Role CAPABILITY
      An additional plugin capability that refines behavior but is not directly loadable.
  • Method Details

    • values

      public static PluginContract.Role[] 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 PluginContract.Role 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