| Package | Description |
|---|---|
| cz.auderis.tools.collection.topo |
Topological sorting mechanism, where object dependencies are taken into account.
|
| Modifier and Type | Method and Description |
|---|---|
static <K1,V1> BasicTopoNode<K1,V1> |
BasicTopoNode.create(K1 key,
V1 value)
Creates an instance of topological sorting node for sorting item
value identified by key key without any dependencies. |
static <K1,V1> BasicTopoNode<K1,V1> |
BasicTopoNode.createWithDependencies(K1 key,
V1 value,
Collection<? extends K1> dependencies)
Creates an instance of topological sorting node for sorting item
value identified by key key with an initial set of dependencies
defined by argument dependencies. |
static <K1,V1> BasicTopoNode<K1,V1> |
BasicTopoNode.createWithDependencies(K1 key,
V1 value,
K1... dependencies)
Creates an instance of topological sorting node for sorting item
value identified by key key with an initial set of dependencies
defined by argument dependencies. |
Copyright © 2014 Boleslav Bobcik - Auderis. All rights reserved.