bibliothek.gui.dock.station.split
Enum PutInfo.Put

java.lang.Object
  extended by java.lang.Enum<PutInfo.Put>
      extended by bibliothek.gui.dock.station.split.PutInfo.Put
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PutInfo.Put>
Enclosing class:
PutInfo

public static enum PutInfo.Put
extends java.lang.Enum<PutInfo.Put>

Information where the mouse is.

Author:
Benjamin Sigg

Enum Constant Summary
BOTTOM
          the mouse is at the bottom
CENTER
          the mouse is in the center of an area
LEFT
          the mouse is on the left
RIGHT
          the mouse is on the right
TITLE
          the mouse is over a DockTitle
TOP
          the mouse is on top
 
Method Summary
static PutInfo.Put valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PutInfo.Put[] 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

TOP

public static final PutInfo.Put TOP
the mouse is on top


LEFT

public static final PutInfo.Put LEFT
the mouse is on the left


RIGHT

public static final PutInfo.Put RIGHT
the mouse is on the right


BOTTOM

public static final PutInfo.Put BOTTOM
the mouse is at the bottom


CENTER

public static final PutInfo.Put CENTER
the mouse is in the center of an area


TITLE

public static final PutInfo.Put TITLE
the mouse is over a DockTitle

Method Detail

values

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

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

valueOf

public static PutInfo.Put 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