public enum Product extends Enum<Product>
| Enum Constant and Description |
|---|
MULE
Mule Runtime CE Edition
|
MULE_EE
Mule Runtime EE Edition
|
| Modifier and Type | Method and Description |
|---|---|
static Product |
getProductByName(String coreLibraryName) |
boolean |
supports(Product product) |
static Product |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Product[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Product MULE
public static final Product MULE_EE
public static Product[] values()
for (Product c : Product.values()) System.out.println(c);
public static Product 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 nullpublic boolean supports(Product product)
product - the product to verify if it's supported.Copyright © 2017 MuleSoft, Inc.. All rights reserved.