public enum ParentConnectorDirection extends Enum<ParentConnectorDirection>
AspectRatioNodePlacer.determineChildConnector(com.yworks.yfiles.algorithms.Node)
,
AspectRatioNodePlacer.placeSubtree(com.yworks.yfiles.algorithms.Node, ParentConnectorDirection)
,
AssistantNodePlacer.determineChildConnector(com.yworks.yfiles.algorithms.Node)
,
AssistantNodePlacer.placeSubtree(com.yworks.yfiles.algorithms.IDataProvider, com.yworks.yfiles.algorithms.IDataProvider, com.yworks.yfiles.layout.LayoutGraph, com.yworks.yfiles.algorithms.Node, ParentConnectorDirection)
,
AssistantNodePlacer.placeSubtree(com.yworks.yfiles.algorithms.Node, ParentConnectorDirection)
,
BusNodePlacer.determineChildConnector(com.yworks.yfiles.algorithms.Node)
,
BusNodePlacer.placeSubtree(com.yworks.yfiles.algorithms.Node, ParentConnectorDirection)
,
DefaultNodePlacer.determineChildConnector(com.yworks.yfiles.algorithms.Node)
,
DefaultNodePlacer.placeSubtree(com.yworks.yfiles.algorithms.Node, ParentConnectorDirection)
,
DelegatingNodePlacer.determineChildConnector(com.yworks.yfiles.algorithms.Node)
,
DelegatingNodePlacer.placeSubtree(com.yworks.yfiles.algorithms.IDataProvider, com.yworks.yfiles.algorithms.IDataProvider, com.yworks.yfiles.layout.LayoutGraph, com.yworks.yfiles.algorithms.Node, ParentConnectorDirection)
,
DelegatingNodePlacer.placeSubtree(com.yworks.yfiles.algorithms.Node, ParentConnectorDirection)
,
DendrogramNodePlacer.placeSubtree(com.yworks.yfiles.algorithms.IDataProvider, com.yworks.yfiles.algorithms.IDataProvider, com.yworks.yfiles.layout.LayoutGraph, com.yworks.yfiles.algorithms.Node, ParentConnectorDirection)
,
DoubleLineNodePlacer.determineChildConnector(com.yworks.yfiles.algorithms.Node)
,
DoubleLineNodePlacer.placeSubtree(com.yworks.yfiles.algorithms.Node, ParentConnectorDirection)
,
FreeNodePlacer.determineChildConnector(com.yworks.yfiles.algorithms.Node)
,
FreeNodePlacer.placeSubtree(com.yworks.yfiles.algorithms.Node, ParentConnectorDirection)
,
GridNodePlacer.determineChildConnector(com.yworks.yfiles.algorithms.Node)
,
GridNodePlacer.placeSubtree(com.yworks.yfiles.algorithms.Node, ParentConnectorDirection)
,
GroupedNodePlacer.placeSubtree(com.yworks.yfiles.algorithms.IDataProvider, com.yworks.yfiles.algorithms.IDataProvider, com.yworks.yfiles.layout.LayoutGraph, com.yworks.yfiles.algorithms.Node, ParentConnectorDirection)
,
INodePlacer.placeSubtree(com.yworks.yfiles.algorithms.IDataProvider, com.yworks.yfiles.algorithms.IDataProvider, com.yworks.yfiles.layout.LayoutGraph, com.yworks.yfiles.algorithms.Node, ParentConnectorDirection)
,
LayeredNodePlacer.determineChildConnector(com.yworks.yfiles.algorithms.Node)
,
LayeredNodePlacer.placeSubtree(com.yworks.yfiles.algorithms.Node, ParentConnectorDirection)
,
LeafNodePlacer.placeSubtree(com.yworks.yfiles.algorithms.IDataProvider, com.yworks.yfiles.algorithms.IDataProvider, com.yworks.yfiles.layout.LayoutGraph, com.yworks.yfiles.algorithms.Node, ParentConnectorDirection)
,
LeftRightNodePlacer.determineChildConnector(com.yworks.yfiles.algorithms.Node)
,
LeftRightNodePlacer.placeSubtree(com.yworks.yfiles.algorithms.Node, ParentConnectorDirection)
,
AbstractNodePlacer.determineChildConnector(com.yworks.yfiles.algorithms.Node)
,
AbstractNodePlacer.placeSubtree(com.yworks.yfiles.algorithms.IDataProvider, com.yworks.yfiles.algorithms.IDataProvider, com.yworks.yfiles.layout.LayoutGraph, com.yworks.yfiles.algorithms.Node, ParentConnectorDirection)
,
AbstractRotatableNodePlacer.determineChildConnector(com.yworks.yfiles.algorithms.Node)
,
AbstractRotatableNodePlacer.placeSubtree(com.yworks.yfiles.algorithms.IDataProvider, com.yworks.yfiles.algorithms.IDataProvider, com.yworks.yfiles.layout.LayoutGraph, com.yworks.yfiles.algorithms.Node, ParentConnectorDirection)
,
AbstractRotatableNodePlacer.translateDirectionToModel(ParentConnectorDirection)
,
AbstractRotatableNodePlacer.translateDirectionToReal(ParentConnectorDirection)
,
SimpleNodePlacer.determineChildConnector(com.yworks.yfiles.algorithms.Node)
,
SimpleNodePlacer.placeSubtree(com.yworks.yfiles.algorithms.Node, ParentConnectorDirection)
Enum Constant and Description |
---|
ANY
Direction specifier which indicates that any direction can be used for the connector to the parent node.
|
EAST
Direction specifier which indicates that the connector to the parent node should end in a segment that can be extended
by a segment that goes east.
|
NONE
Direction specifier which indicates that no connector should be calculated.
|
NORTH
Direction specifier which indicates that the connector to the parent node should end in a segment that can be extended
by a segment that goes north.
|
SOUTH
Direction specifier which indicates that the connector to the parent node should end in a segment that can be extended
by a segment that goes south.
|
WEST
Direction specifier which indicates that the connector to the parent node should end in a segment that can be extended
by a segment that goes west.
|
Modifier and Type | Method and Description |
---|---|
static ParentConnectorDirection |
fromOrdinal(int ordinal) |
int |
value() |
static ParentConnectorDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParentConnectorDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParentConnectorDirection ANY
public static final ParentConnectorDirection EAST
public static final ParentConnectorDirection NONE
public static final ParentConnectorDirection NORTH
public static final ParentConnectorDirection SOUTH
public static final ParentConnectorDirection WEST
public static final ParentConnectorDirection fromOrdinal(int ordinal)
public int value()
public static ParentConnectorDirection valueOf(String name)
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullname
- the name of the enum constant to be returned.public static ParentConnectorDirection[] values()
for (ParentConnectorDirection c : ParentConnectorDirection.values()) System.out.println(c);