|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<Border>
com.guiseframework.component.layout.Border
public enum Border
The points at which the four logical flows end.
Side| Enum Constant Summary | |
|---|---|
LINE_FAR
The right side in left-to-right top-to-bottom orientation. |
|
LINE_NEAR
The left side in left-to-right top-to-bottom orientation. |
|
PAGE_FAR
The bottom side in left-to-right top-to-bottom orientation. |
|
PAGE_NEAR
The top side in left-to-right top-to-bottom orientation. |
|
| Method Summary | |
|---|---|
static Border |
getBorder(Flow flow,
Flow.End end)
Determines the border from the flow and end. |
Flow.End |
getEnd()
The end. |
Flow |
getFlow()
The flow. |
static Border |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Border[] |
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 Border LINE_NEAR
public static final Border LINE_FAR
public static final Border PAGE_NEAR
public static final Border PAGE_FAR
| Method Detail |
|---|
public static Border[] values()
for (Border c : Border.values()) System.out.println(c);
public static Border valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is nullpublic Flow getFlow()
public Flow.End getEnd()
public static Border getBorder(Flow flow,
Flow.End end)
flow - The flowend - The end.
java.lang.NullPointerException - if the given flow and/or end is null.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||