Enum Class Suitability

java.lang.Object
java.lang.Enum<Suitability>
uk.ac.starlink.topcat.activate.Suitability
All Implemented Interfaces:
Serializable, Comparable<Suitability>, Constable

public enum Suitability extends Enum<Suitability>
Enum defining suitability levels for the use of a particular ActivationType with a given TopcatModel.
Since:
23 Mar 2018
Author:
Mark Taylor
  • Enum Constant Details

    • ACTIVE

      public static final Suitability ACTIVE
      Activation action listed and active.
    • SUGGESTED

      public static final Suitability SUGGESTED
      Activation action listed prominently and inactive.
    • PRESENT

      public static final Suitability PRESENT
      Activation action listed less prominently and inactive.
    • AVAILABLE

      public static final Suitability AVAILABLE
      Activation action available from a menu.
    • DISABLED

      public static final Suitability DISABLED
      Activation action visible in a menu but not available.
    • NONE

      public static final Suitability NONE
      Activation action completely hidden.
  • Method Details

    • values

      public static Suitability[] 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 Suitability 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