bibliothek.gui.dock.station.screen
Enum ScreenDockWindowBorder.Position

java.lang.Object
  extended by java.lang.Enum<ScreenDockWindowBorder.Position>
      extended by bibliothek.gui.dock.station.screen.ScreenDockWindowBorder.Position
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ScreenDockWindowBorder.Position>
Enclosing class:
ScreenDockWindowBorder

public static enum ScreenDockWindowBorder.Position
extends java.lang.Enum<ScreenDockWindowBorder.Position>

various positions where the user can grab this border


Enum Constant Summary
E
           
MOVE
           
N
           
NE
           
NOTHING
           
NW
           
S
           
SE
           
SW
           
W
           
 
Method Summary
static ScreenDockWindowBorder.Position valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ScreenDockWindowBorder.Position[] 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

N

public static final ScreenDockWindowBorder.Position N

E

public static final ScreenDockWindowBorder.Position E

S

public static final ScreenDockWindowBorder.Position S

W

public static final ScreenDockWindowBorder.Position W

NE

public static final ScreenDockWindowBorder.Position NE

SW

public static final ScreenDockWindowBorder.Position SW

NW

public static final ScreenDockWindowBorder.Position NW

SE

public static final ScreenDockWindowBorder.Position SE

MOVE

public static final ScreenDockWindowBorder.Position MOVE

NOTHING

public static final ScreenDockWindowBorder.Position NOTHING
Method Detail

values

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

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

valueOf

public static ScreenDockWindowBorder.Position 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