Package uk.ac.starlink.topcat.activate
Enum Class Suitability
- All Implemented Interfaces:
Serializable
,Comparable<Suitability>
,Constable
Enum defining suitability levels for the use of a particular
ActivationType with a given TopcatModel.
- Since:
- 23 Mar 2018
- Author:
- Mark Taylor
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionActivation action listed and active.Activation action available from a menu.Activation action visible in a menu but not available.Activation action completely hidden.Activation action listed less prominently and inactive.Activation action listed prominently and inactive. -
Method Summary
Modifier and TypeMethodDescriptionstatic Suitability
Returns the enum constant of this class with the specified name.static Suitability[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ACTIVE
Activation action listed and active. -
SUGGESTED
Activation action listed prominently and inactive. -
PRESENT
Activation action listed less prominently and inactive. -
AVAILABLE
Activation action available from a menu. -
DISABLED
Activation action visible in a menu but not available. -
NONE
Activation action completely hidden.
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-