Package org.jgrapht.opt.graph.fastutil
Class FastutilIntVertexGSS<E>
- java.lang.Object
- 
- org.jgrapht.opt.graph.fastutil.FastutilIntVertexGSS<E>
 
- 
- Type Parameters:
- E- the graph edge type
 - All Implemented Interfaces:
- Serializable,- GraphSpecificsStrategy<Integer,E>
 
 public class FastutilIntVertexGSS<E> extends Object implements GraphSpecificsStrategy<Integer,E> A specifics strategy implementation using fastutil maps for storage specialized for integer vertices.- Author:
- Dimitrios Michail
- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description FastutilIntVertexGSS()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description Function<GraphType,IntrusiveEdgesSpecifics<Integer,E>>getIntrusiveEdgesSpecificsFactory()Get a function which creates the intrusive edges specifics.BiFunction<Graph<Integer,E>,GraphType,Specifics<Integer,E>>getSpecificsFactory()Get a function which creates the specifics.- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface org.jgrapht.graph.GraphSpecificsStrategygetEdgeSetFactory
 
- 
 
- 
- 
- 
Method Detail- 
getSpecificsFactorypublic BiFunction<Graph<Integer,E>,GraphType,Specifics<Integer,E>> getSpecificsFactory() Description copied from interface:GraphSpecificsStrategyGet a function which creates the specifics. The factory will accept the graph type as a parameter.- Specified by:
- getSpecificsFactoryin interface- GraphSpecificsStrategy<Integer,E>
- Returns:
- a function which creates intrusive edges specifics.
 
 - 
getIntrusiveEdgesSpecificsFactorypublic Function<GraphType,IntrusiveEdgesSpecifics<Integer,E>> getIntrusiveEdgesSpecificsFactory() Description copied from interface:GraphSpecificsStrategyGet a function which creates the intrusive edges specifics. The factory will accept the graph type as a parameter.Note that it is very important to use a map implementation which respects iteration order. - Specified by:
- getIntrusiveEdgesSpecificsFactoryin interface- GraphSpecificsStrategy<Integer,E>
- Returns:
- a function which creates intrusive edges specifics.
 
 
- 
 
-