public enum Category extends Enum<Category>
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 workCERTIFIED: Represent that the plugin is MuleSoft certified and requires an Enterprise Mule
Runtime to work| Enum Constant and Description |
|---|
CERTIFIED |
COMMUNITY |
PREMIUM |
SELECT |
| Modifier and Type | Method and Description |
|---|---|
static Category |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Category[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Category COMMUNITY
public static final Category SELECT
public static final Category PREMIUM
public static final Category CERTIFIED
public static Category[] values()
for (Category c : Category.values()) System.out.println(c);
public static Category valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017 MuleSoft, Inc.. All rights reserved.