- All Implemented Interfaces:
Serializable
,Comparable<PluginMenuItemType>
,Constable
public enum PluginMenuItemType extends Enum<PluginMenuItemType>
Menus in the menubar.
- Since:
- Omix 1.3.11
- Author:
- Dr. Peter Droste, Omix Visualization
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description Analysis
The "Analysis" menu.Data
The "Data" menu.Default
The default menu for plugin actions ("Extra" menu).Edit
The "Edit" menu.File
The "File" menu.FileExport
The "File -> Export" menu.FileImport
The "File -> Import" menu.FileNew
The "File -> New" menu.Help
The "Help" menu.Layout
The "Layout" menu.View
The "View" menu.Visualization
The "Visualization" menu. -
Method Summary
Modifier and Type Method Description static PluginMenuItemType
valueOf(String name)
Returns the enum constant of this type with the specified name.static PluginMenuItemType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
Default
The default menu for plugin actions ("Extra" menu). -
File
The "File" menu. -
FileNew
The "File -> New" menu. -
FileImport
The "File -> Import" menu. -
FileExport
The "File -> Export" menu. -
Edit
The "Edit" menu. -
View
The "View" menu. -
Help
The "Help" menu. -
Visualization
The "Visualization" menu. -
Layout
The "Layout" menu. -
Analysis
The "Analysis" menu. -
Data
The "Data" menu.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-