Class SimpleAdjacencyMaps
- java.lang.Object
-
- uk.gov.gchq.gaffer.data.graph.adjacency.SimpleAdjacencyMaps
-
- All Implemented Interfaces:
Iterable<AdjacencyMap>
,AdjacencyMaps
public class SimpleAdjacencyMaps extends Object implements AdjacencyMaps
ASimpleAdjacencyMaps
object represents a collection ofAdjacencyMap
s containing graph adjacency information.
-
-
Constructor Summary
Constructors Constructor Description SimpleAdjacencyMaps()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<AdjacencyMap>
asList()
Get a representation of the current AdjacencyMaps object as aList
.String
toString()
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface uk.gov.gchq.gaffer.data.graph.adjacency.AdjacencyMaps
add, empty, get, iterator, prettyPrint, size
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Method Detail
-
asList
public List<AdjacencyMap> asList()
Description copied from interface:AdjacencyMaps
Get a representation of the current AdjacencyMaps object as aList
.- Specified by:
asList
in interfaceAdjacencyMaps
- Returns:
- a
List
representation of the current AdjacencyMaps object
-
-