|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<NodeType>
de.cau.cs.kieler.klay.layered.properties.NodeType
public enum NodeType
Definition of node types used in the layered approach.
Enum Constant Summary | |
---|---|
COMPOUND_SIDE
a dummy node created to be part of a linear segment used to draw the sides of a compound node. |
|
EXTERNAL_PORT
a node representing an external port. |
|
LONG_EDGE
a dummy node created to split a long edge. |
|
LOWER_COMPOUND_BORDER
a dummy node created as lower border node to represent a subgraph node. |
|
LOWER_COMPOUND_PORT
a dummy node created to represent a port connected with an outgoing edge. |
|
NORMAL
a normal node is created from a node of the original graph. |
|
NORTH_SOUTH_PORT
a dummy node created to cope with ports at the northern or southern side. |
|
UPPER_COMPOUND_BORDER
a dummy node created as upper border node to represent a subgraph node. |
|
UPPER_COMPOUND_PORT
a dummy node created to represent a port connected with an incoming edge. |
Method Summary | |
---|---|
static NodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static NodeType[] |
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 NodeType NORMAL
public static final NodeType LONG_EDGE
public static final NodeType EXTERNAL_PORT
public static final NodeType NORTH_SOUTH_PORT
public static final NodeType UPPER_COMPOUND_BORDER
public static final NodeType LOWER_COMPOUND_BORDER
public static final NodeType UPPER_COMPOUND_PORT
public static final NodeType LOWER_COMPOUND_PORT
public static final NodeType COMPOUND_SIDE
Method Detail |
---|
public static NodeType[] values()
for (NodeType c : NodeType.values()) System.out.println(c);
public static NodeType 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 |