Package org.neo4j.gds.core.loading
Class UncompressedAdjacencyListBuilder
- java.lang.Object
-
- org.neo4j.gds.core.loading.UncompressedAdjacencyListBuilder
-
- All Implemented Interfaces:
AdjacencyListBuilder<long[],UncompressedAdjacencyList>
public final class UncompressedAdjacencyListBuilder extends java.lang.Object implements AdjacencyListBuilder<long[],UncompressedAdjacencyList>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classUncompressedAdjacencyListBuilder.Allocatorstatic classUncompressedAdjacencyListBuilder.PositionalAllocator
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UncompressedAdjacencyListbuild(HugeIntArray degrees, HugeLongArray offsets)UncompressedAdjacencyListBuilder.AllocatornewAllocator()AdjacencyListBuilder.Allocator<long[]>newPositionalAllocator()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.neo4j.gds.core.loading.AdjacencyListBuilder
reorder
-
-
-
-
Method Detail
-
newAllocator
public UncompressedAdjacencyListBuilder.Allocator newAllocator()
- Specified by:
newAllocatorin interfaceAdjacencyListBuilder<long[],UncompressedAdjacencyList>
-
newPositionalAllocator
public AdjacencyListBuilder.Allocator<long[]> newPositionalAllocator()
- Specified by:
newPositionalAllocatorin interfaceAdjacencyListBuilder<long[],UncompressedAdjacencyList>
-
build
public UncompressedAdjacencyList build(HugeIntArray degrees, HugeLongArray offsets)
- Specified by:
buildin interfaceAdjacencyListBuilder<long[],UncompressedAdjacencyList>
-
-