- All Implemented Interfaces:
Serializable
,Comparable<PluginToolbarItemType>
,Constable
public enum PluginToolbarItemType extends Enum<PluginToolbarItemType>
Actions on the toolbars.
- Since:
- Omix 1.7.0
- Author:
- Dr. Peter Droste
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description DefaultToolBar
The default toolbar for plugin actions.EditToolBar
The toolbar containing the basic editor functionalities like view mode, select mode, curve mode etc.FileToolBar
The toolbar containing, amongst others, the file new/file open buttonGraphicsToolBar
The toolbar containing the functionalities for adding graphical components.SelectToolBar
The toolbar containing, amongst others, the group/ungroup buttonUtilityToolBar
The toolbar containing, amongst others, the import/export buttonViewToolBar
The toolbar containing the show/hide options -
Method Summary
Modifier and Type Method Description static PluginToolbarItemType
valueOf(String name)
Returns the enum constant of this type with the specified name.static PluginToolbarItemType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
DefaultToolBar
The default toolbar for plugin actions. -
FileToolBar
The toolbar containing, amongst others, the file new/file open button -
ViewToolBar
The toolbar containing the show/hide options -
EditToolBar
The toolbar containing the basic editor functionalities like view mode, select mode, curve mode etc. -
GraphicsToolBar
The toolbar containing the functionalities for adding graphical components.- Since:
- Omix 1.8
-
UtilityToolBar
The toolbar containing, amongst others, the import/export button -
SelectToolBar
The toolbar containing, amongst others, the group/ungroup button
-
-
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
-