bibliothek.gui.dock.station.stack.tab
Enum MenuLineLayoutOrder.Item

java.lang.Object
  extended by java.lang.Enum<MenuLineLayoutOrder.Item>
      extended by bibliothek.gui.dock.station.stack.tab.MenuLineLayoutOrder.Item
All Implemented Interfaces:
Serializable, Comparable<MenuLineLayoutOrder.Item>
Enclosing class:
MenuLineLayoutOrder

public static enum MenuLineLayoutOrder.Item
extends Enum<MenuLineLayoutOrder.Item>

The various items that are used by the MenuLineLayout.

Author:
Benjamin Sigg

Enum Constant Summary
INFO
          An additional info-Component delivered by the TabPane
MENU
          The menu showing overflowing tabs, might not always be visible
TABS
          The tabs of the various Dockables
 
Method Summary
static MenuLineLayoutOrder.Item valueOf(String name)
          Returns the enum constant of this type with the specified name.
static MenuLineLayoutOrder.Item[] 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

MENU

public static final MenuLineLayoutOrder.Item MENU
The menu showing overflowing tabs, might not always be visible


TABS

public static final MenuLineLayoutOrder.Item TABS
The tabs of the various Dockables


INFO

public static final MenuLineLayoutOrder.Item INFO
An additional info-Component delivered by the TabPane

Method Detail

values

public static final MenuLineLayoutOrder.Item[] 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(MenuLineLayoutOrder.Item c : MenuLineLayoutOrder.Item.values())
        System.out.println(c);

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

valueOf

public static MenuLineLayoutOrder.Item valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name