Uses of Class
org.magicwerk.brownies.collections.BigList.Block
Packages that use BigList.Block
Package
Description
Brownies Collections complements the Java Collections Framework.
-
Uses of BigList.Block in org.magicwerk.brownies.collections
Fields in org.magicwerk.brownies.collections declared as BigList.BlockModifier and TypeFieldDescription(package private) BigList.Block
<E> BigList.BlockNode.block
The stored blockMethods in org.magicwerk.brownies.collections that return BigList.BlockModifier and TypeMethodDescriptionprivate BigList.Block
<E> BigList.BlockNode.getBlock()
Gets the block stored by this node.BigList.Block.ref()
Increment reference count as block is used by one BigList instance more.Methods in org.magicwerk.brownies.collections with parameters of type BigList.BlockModifier and TypeMethodDescriptionprivate void
BigList.addBlock
(int index, BigList.Block<E> obj) Adds a new element to the list.private void
BigList.doAddSplitBlock
(int index, E element, int pos, BigList.Block<E> newBlock) private BigList.BlockNode
<E> BigList.BlockNode.insert
(int index, BigList.Block<E> obj) Inserts new node holding specified block at the position index.private BigList.BlockNode
<E> BigList.BlockNode.insertOnLeft
(int relIndex, BigList.Block<E> obj) Inserts new node holding specified block on the node's left side.private BigList.BlockNode
<E> BigList.BlockNode.insertOnRight
(int relIndex, BigList.Block<E> obj) Inserts new node holding specified block on the node's right side.private void
BigList.BlockNode.setBlock
(BigList.Block<E> block) Sets block to store by this node.Constructors in org.magicwerk.brownies.collections with parameters of type BigList.BlockModifierConstructorDescriptionBlock
(BigList.Block<T> that) private
BlockNode
(BigList.BlockNode<E> parent, int relPos, BigList.Block<E> block, BigList.BlockNode<E> rightFollower, BigList.BlockNode<E> leftFollower) Constructs a new node.