lt.monarch.chart.plugins.toolbar
Enum ToolbarElements

java.lang.Object
  extended by java.lang.Enum<ToolbarElements>
      extended by lt.monarch.chart.plugins.toolbar.ToolbarElements
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ToolbarElements>

public enum ToolbarElements
extends java.lang.Enum<ToolbarElements>

Toolbar element enumeration.


Enum Constant Summary
Enum Constant and Description
BACKGROUND_COLOR
          Background color controls
FONT_COLOR
          Font color control.
FONT_MODIFIERS
          Font modifier(bold, italic, etc.) controls
FONT_NAME
          Font family controls
FONT_SIZE
          Font size controls
FOREGROUND_COLOR
          Foreground color controls
LOAD
          Load stylesheet menu item.
MOUSE_SELECTION
          Object selection with mouse
NAVIGATION
          Object hierarchy navigation control.
NEW
          Reset stylesheet menu item.
REVERT
          Revert changes menu item.
SAVE
          Save operations control.
THEME
          Theme selection control.
UNDO_REDO
          Undo/Redo with keyboard
 
Method Summary
Modifier and Type Method and Description
static ToolbarElements valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ToolbarElements[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NAVIGATION

public static final ToolbarElements NAVIGATION
Object hierarchy navigation control.


NEW

public static final ToolbarElements NEW
Reset stylesheet menu item.


SAVE

public static final ToolbarElements SAVE
Save operations control.


LOAD

public static final ToolbarElements LOAD
Load stylesheet menu item.


MOUSE_SELECTION

public static final ToolbarElements MOUSE_SELECTION
Object selection with mouse


FOREGROUND_COLOR

public static final ToolbarElements FOREGROUND_COLOR
Foreground color controls


BACKGROUND_COLOR

public static final ToolbarElements BACKGROUND_COLOR
Background color controls


FONT_NAME

public static final ToolbarElements FONT_NAME
Font family controls


FONT_SIZE

public static final ToolbarElements FONT_SIZE
Font size controls


FONT_COLOR

public static final ToolbarElements FONT_COLOR
Font color control.


FONT_MODIFIERS

public static final ToolbarElements FONT_MODIFIERS
Font modifier(bold, italic, etc.) controls


THEME

public static final ToolbarElements THEME
Theme selection control.


REVERT

public static final ToolbarElements REVERT
Revert changes menu item.


UNDO_REDO

public static final ToolbarElements UNDO_REDO
Undo/Redo with keyboard

Method Detail

values

public static ToolbarElements[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (ToolbarElements c : ToolbarElements.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ToolbarElements valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null