Interface Allocator.AllocationNode
-
- Enclosing interface:
- Allocator
public static interface Allocator.AllocationNodeA node in a chain ofAllocations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AllocationgetAllocation()Returns theAllocationassociated to this chain node.Allocator.AllocationNodenext()Returns the next chain node, ornullif this is the last node in the chain.
-
-
-
Method Detail
-
getAllocation
Allocation getAllocation()
Returns theAllocationassociated to this chain node.
-
next
@Nullable Allocator.AllocationNode next()
Returns the next chain node, ornullif this is the last node in the chain.
-
-