java.lang.Object
java.lang.Enum<Classifier>
org.mule.maven.pom.parser.api.model.Classifier
All Implemented Interfaces:
Serializable, Comparable<Classifier>, Constable

public enum Classifier extends Enum<Classifier>
Types of projects supported.
Since:
2.0.0
  • Enum Constant Details

    • MULE_APPLICATION

      public static final Classifier MULE_APPLICATION
    • MULE_DOMAIN

      public static final Classifier MULE_DOMAIN
    • MULE_PLUGIN

      public static final Classifier MULE_PLUGIN
  • Method Details

    • values

      public static Classifier[] 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 Classifier 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
    • fromString

      public static Classifier fromString(String name)
    • equals

      public boolean equals(String name)
    • toString

      public String toString()
      Overrides:
      toString in class Enum<Classifier>