public enum IntegrationPoint extends java.lang.Enum<IntegrationPoint>
| Enum Constant and Description | 
|---|
CODE_EDITOR_MENU
The tool has an item in the code editor context menu. 
 | 
MAIN_TOOLBAR
The tool has an item in the main toolbar. 
 | 
NAVIGATOR_MENU
The tool has an item in the navigator context menu. 
 | 
TOOLS_MENU
The tool has an item in the main Tools menu. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static IntegrationPoint | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static IntegrationPoint[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final IntegrationPoint TOOLS_MENU
public static final IntegrationPoint CODE_EDITOR_MENU
public static final IntegrationPoint NAVIGATOR_MENU
public static final IntegrationPoint MAIN_TOOLBAR
public static IntegrationPoint[] values()
for (IntegrationPoint c : IntegrationPoint.values()) System.out.println(c);
public static IntegrationPoint 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