Enum Class Category

java.lang.Object
java.lang.Enum<Category>
org.mule.sdk.api.meta.Category
All Implemented Interfaces:
Serializable, Comparable<Category>, Constable

@MinMuleVersion("4.5.0") public enum Category extends Enum<Category>
Enum that stores a list of valid categories that a plugin can be assigned to.

  • COMMUNITY: Represents that the plugin does not requires an Enterprise Mule Runtime to work.
  • SELECT: Represents that the plugin requires an Enterprise Mule Runtime to work.
  • PREMIUM: Represents that the plugin requires an Enterprise Mule Runtime to work and also an plugin entitlement to work
  • CERTIFIED: Represent that the plugin is MuleSoft certified and requires an Enterprise Mule Runtime to work
Since:
1.0
  • Enum Constant Details

  • Method Details

    • values

      public static Category[] 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 Category 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