Package | Description |
---|---|
agi.foundation.access |
Contains types used in performing access calculations.
|
Modifier and Type | Method and Description |
---|---|
static LinkGraphDirection |
LinkGraphDirection.getDefault()
Get the enum constant that is considered to be the default.
|
static LinkGraphDirection |
LinkGraphDirection.getFromValue(int value)
Get the enum constant that is associated with the given numeric value.
|
static LinkGraphDirection |
LinkGraphDirection.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LinkGraphDirection[] |
LinkGraphDirection.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
IServiceProvider[] |
LinkGraph.findAllLinksAtNode(IServiceProvider node,
LinkGraphDirection direction)
Find all the links which contain the given node and are in the correct direction.
|
LinkPath[] |
LinkGraph.findAllPaths(IServiceProvider initial,
IServiceProvider _final,
LinkGraphDirection direction)
Finds all paths between two objects.
|
LinkPath[] |
LinkGraph.findAllPaths(IServiceProvider initial,
IServiceProvider _final,
LinkGraphDirection direction,
int maximumLength)
Finds all paths between two objects.
|
LinkPath |
LinkGraph.findShortestPath(IServiceProvider initial,
IServiceProvider _final,
LinkGraphDirection direction)
Finds the shortest path between an initial object and a final object.
|