com.dlsc.flexgantt.swing
Enum GanttChartToolBar.Mode

java.lang.Object
  extended by java.lang.Enum<GanttChartToolBar.Mode>
      extended by com.dlsc.flexgantt.swing.GanttChartToolBar.Mode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<GanttChartToolBar.Mode>
Enclosing class:
GanttChartToolBar<T extends AbstractGanttChart>

public static enum GanttChartToolBar.Mode
extends java.lang.Enum<GanttChartToolBar.Mode>

Different display modes supported by the toolbar. The toolbar can display buttons with just an icon, just the text or both at the same time.

Since:
1.0

Enum Constant Summary
ICONS_AND_TEXT
          A toolbar mode where buttons are displayed with an icon and a text.
ICONS_ONLY
          A toolbar mode where buttons are displayed with an icon only.
TEXT_ONLY
          A toolbar mode where buttons are displayed with the text only.
 
Method Summary
static GanttChartToolBar.Mode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static GanttChartToolBar.Mode[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ICONS_ONLY

public static final GanttChartToolBar.Mode ICONS_ONLY
A toolbar mode where buttons are displayed with an icon only.

Since:
1.0

TEXT_ONLY

public static final GanttChartToolBar.Mode TEXT_ONLY
A toolbar mode where buttons are displayed with the text only.

Since:
1.0

ICONS_AND_TEXT

public static final GanttChartToolBar.Mode ICONS_AND_TEXT
A toolbar mode where buttons are displayed with an icon and a text.

Since:
1.0
Method Detail

values

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

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

valueOf

public static GanttChartToolBar.Mode 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