public enum Classifier extends Enum<Classifier>
| Enum Constant and Description |
|---|
MULE_APPLICATION |
MULE_APPLICATION_EXAMPLE |
MULE_APPLICATION_TEMPLATE |
MULE_DOMAIN |
MULE_POLICY |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(String name) |
static Classifier |
fromString(String name) |
String |
toString() |
static Classifier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Classifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Classifier MULE_APPLICATION
public static final Classifier MULE_APPLICATION_EXAMPLE
public static final Classifier MULE_APPLICATION_TEMPLATE
public static final Classifier MULE_POLICY
public static final Classifier MULE_DOMAIN
public static Classifier[] values()
for (Classifier c : Classifier.values()) System.out.println(c);
public static Classifier 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 static Classifier fromString(String name)
public boolean equals(String name)
public String toString()
toString in class Enum<Classifier>Copyright © 2017. All rights reserved.