@OpenApiAll public enum LocationInTool extends java.lang.Enum<LocationInTool>
Enum Constant and Description |
---|
application
application wide context, i.e a notification or some ui element that is used in many places
|
browser
browser (containment) window
|
diagram
inside the diagram panel
|
diagram_context_menu
a context menu inside the diagram panel
|
diagram_toolbar
top toolbar bar of the diagram
|
main_toolbar
main MD menu and toolbar
|
project_window
project specific window location, i.e validation results or find usages
|
specification_dialog
element specification dialog
|
unknown
undefined context
|
Modifier and Type | Method and Description |
---|---|
static LocationInTool |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LocationInTool[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LocationInTool unknown
public static final LocationInTool application
public static final LocationInTool project_window
public static final LocationInTool specification_dialog
public static final LocationInTool main_toolbar
public static final LocationInTool browser
public static final LocationInTool diagram
public static final LocationInTool diagram_toolbar
public static final LocationInTool diagram_context_menu
public static LocationInTool[] values()
for (LocationInTool c : LocationInTool.values()) System.out.println(c);
public static LocationInTool 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