|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<PushAwayMode>
org.noos.xing.mydoggy.PushAwayMode
public enum PushAwayMode
This enumeration specifies the "push away" modes for tools with specific anchor.
| Enum Constant Summary | |
|---|---|
ANTICLOCKWISE
Using this mode, left tool pushs away bottom tool, bottom tool pushs away right tool, right tool pushs away top tool. |
|
HORIZONTAL
Using this mode, left/right tools push away top/bottom tools. |
|
MOST_RECENT
Whoever is pressed last toolwindow push away the previous toolwindows. |
|
VERTICAL
Using this mode, top/bottom tools push away left/right tools. |
|
| Method Summary | |
|---|---|
static PushAwayMode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static PushAwayMode[] |
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 |
|---|
public static final PushAwayMode HORIZONTAL
public static final PushAwayMode VERTICAL
public static final PushAwayMode ANTICLOCKWISE
public static final PushAwayMode MOST_RECENT
| Method Detail |
|---|
public static PushAwayMode[] values()
for (PushAwayMode c : PushAwayMode.values()) System.out.println(c);
public static PushAwayMode valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||