Enum Class Qualification

java.lang.Object
java.lang.Enum<Qualification>
net.fellbaum.jemoji.Qualification
All Implemented Interfaces:
Serializable, Comparable<Qualification>, Constable

public enum Qualification extends Enum<Qualification>
  • Enum Constant Details

    • COMPONENT

      public static final Qualification COMPONENT
    • FULLY_QUALIFIED

      public static final Qualification FULLY_QUALIFIED
    • MINIMALLY_QUALIFIED

      public static final Qualification MINIMALLY_QUALIFIED
    • UNQUALIFIED

      public static final Qualification UNQUALIFIED
  • Method Details

    • values

      public static Qualification[] 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 Qualification 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
    • getQualification

      public String getQualification()
    • fromString

      public static Qualification fromString(String qualification)