bibliothek.gui.dock.station.toolbar.menu
Enum CustomizationToolbarButton.ItemLocation

java.lang.Object
  extended by java.lang.Enum<CustomizationToolbarButton.ItemLocation>
      extended by bibliothek.gui.dock.station.toolbar.menu.CustomizationToolbarButton.ItemLocation
All Implemented Interfaces:
Serializable, Comparable<CustomizationToolbarButton.ItemLocation>
Enclosing class:
CustomizationToolbarButton

public static enum CustomizationToolbarButton.ItemLocation
extends Enum<CustomizationToolbarButton.ItemLocation>

The different locations where a Dockable can be in respect to this button


Enum Constant Summary
ELSEWHERE
          The Dockable is visible, but it is part of another DockStation
HERE
          The Dockable is visible and it is part of this DockStation
INVISIBLE
          The Dockable is not visible anywhere
 
Method Summary
static CustomizationToolbarButton.ItemLocation valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CustomizationToolbarButton.ItemLocation[] 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

INVISIBLE

public static final CustomizationToolbarButton.ItemLocation INVISIBLE
The Dockable is not visible anywhere


ELSEWHERE

public static final CustomizationToolbarButton.ItemLocation ELSEWHERE
The Dockable is visible, but it is part of another DockStation


HERE

public static final CustomizationToolbarButton.ItemLocation HERE
The Dockable is visible and it is part of this DockStation

Method Detail

values

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

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

valueOf

public static CustomizationToolbarButton.ItemLocation 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
NullPointerException - if the argument is null