Defines edge types distinguished by the MultiPageLayout.
Members
No filters for this type
Constants
An edge is called connector if it is connected to a connector node (a node of type CONNECTOR), i.e., it represents an edge of the input graph whose endpoints lie on different pages.
static
See Also
An edge is called proxy if it is connected to at least one proxy node and the other node isn't a connector or proxy reference node. A proxy node has type PROXY) and represents a proxy of an original node lying on another page.
Note that an edge between a proxy node and a connector/proxy reference node is always of type CONNECTOR and PROXY_REFERENCE respectively.
static
See Also
API
- getEdgeType, PROXY
An edge is called proxy reference if it is connected to a proxy reference node (a node of type PROXY_REFERENCE), i.e., a node that refers to a proxy of an original node lying on another page.
static
See Also
Static Methods
Converts the given argument to an enum constant of this enum type.
Converts the given argument to an enum constant of this enum type.
Most notably, this method can convert an enum constant's name into the enum constant itself.
static
Parameters
- value: MultiPageEdgeType
- The value to convert to an enum constant.
Return Value
- MultiPageEdgeType
- The enum constant that corresponds to the given argument.
Returns the name of the given enum constant.
Returns the name of the given enum constant.
static
Parameters
- value: MultiPageEdgeType
- The numeric value of an enum constant.
Return Value
- string
- The name of the enum constant.
Throws
- Exception ({ name: 'Error' })
- If this type is a flags enums, and the provided value doesn't correspond to a single enum constant, or if this enum type contains no constant of the given numeric value.