public enum Availability extends java.lang.Enum<Availability>
| Enum Constant and Description | 
|---|
ALWAYS
The tool is always available. 
 | 
ANY_SELECTION
The tool is available with any selection. 
 | 
SELECTED_TYPES
The tool is available only when specific file types are selected. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static Availability | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static Availability[] | 
values()
Returns an array containing the constants of this enum type, in the order they are declared. 
 | 
public static final Availability ALWAYS
public static final Availability ANY_SELECTION
public static final Availability SELECTED_TYPES
public static Availability[] values()
for (Availability c : Availability.values())
    System.out.println(c);
public static Availability valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null