|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<InLayerConstraint>
de.cau.cs.kieler.klay.layered.properties.InLayerConstraint
public enum InLayerConstraint
Enumeration of in-layer constraint types. In-layer constraints divide a layer into three parts: the normal part, a top part and a bottom part. This constraint can be set on nodes to define in which part they may appear.
InLayerConstraintProcessor
Enum Constant Summary | |
---|---|
BOTTOM
float node to the bottom of the layer, along with other nodes posessing this constraint. |
|
NONE
no constraint on in-layer placement. |
|
TOP
float node to the top of the layer, along with other nodes posessing this constraint. |
Method Summary | |
---|---|
static InLayerConstraint |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static InLayerConstraint[] |
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 InLayerConstraint NONE
public static final InLayerConstraint TOP
public static final InLayerConstraint BOTTOM
Method Detail |
---|
public static InLayerConstraint[] values()
for (InLayerConstraint c : InLayerConstraint.values()) System.out.println(c);
public static InLayerConstraint 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 |