public enum Suitability extends Enum<Suitability>
Enum Constant and Description |
---|
ACTIVE
Activation action listed and active.
|
AVAILABLE
Activation action available from a menu.
|
DISABLED
Activation action visible in a menu but not available.
|
NONE
Activation action completely hidden.
|
PRESENT
Activation action listed less prominently and inactive.
|
SUGGESTED
Activation action listed prominently and inactive.
|
Modifier and Type | Method and Description |
---|---|
static Suitability |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Suitability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Suitability ACTIVE
public static final Suitability SUGGESTED
public static final Suitability PRESENT
public static final Suitability AVAILABLE
public static final Suitability DISABLED
public static final Suitability NONE
public static Suitability[] values()
for (Suitability c : Suitability.values()) System.out.println(c);
public static Suitability 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 nullCopyright © 2003-2025 CCLRC: Council for the Central Laboratory of the Research Councils. All Rights Reserved.