public final class TransformationContextKeys extends Object
DependencyGraphTransformationContext.get(Object)| Modifier and Type | Field and Description | 
|---|---|
| static Object | CONFLICT_IDSThe key in the graph transformation context where a  Map<DependencyNode, Object>is stored which maps
 dependency nodes to their conflict ids. | 
| static Object | CYCLIC_CONFLICT_IDSThe key in the graph transformation context where a  Collection<Collection<Object>>is stored that denotes
 cycles among conflict ids. | 
| static Object | SORTED_CONFLICT_IDSThe key in the graph transformation context where a  List<Object>is stored that denotes a topological
 sorting of the conflict ids. | 
| static Object | STATSThe key in the graph transformation context where a  Map<String, Object>is stored that can be used to
 include some runtime/performance stats in the debug log. | 
public static final Object CONFLICT_IDS
Map<DependencyNode, Object> is stored which maps
 dependency nodes to their conflict ids. All nodes that map to an equal conflict id belong to the same group of
 conflicting dependencies. Note that the map keys use reference equality.ConflictMarkerpublic static final Object SORTED_CONFLICT_IDS
List<Object> is stored that denotes a topological
 sorting of the conflict ids.ConflictIdSorterpublic static final Object CYCLIC_CONFLICT_IDS
Collection<Collection<Object>> is stored that denotes
 cycles among conflict ids. Each element in the outer collection denotes one cycle, i.e. if the collection is
 empty, the conflict ids have no cyclic dependencies.ConflictIdSorterCopyright © 2010–2018 The Apache Software Foundation. All rights reserved.