Uses of Class
org.magicwerk.brownies.collections.BigList.Block
-
Packages that use BigList.Block Package Description org.magicwerk.brownies.collections 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.Block Modifier and Type Field Description (package private) BigList.Block<E>
BigList.BlockNode. block
The stored blockMethods in org.magicwerk.brownies.collections that return BigList.Block Modifier and Type Method Description private BigList.Block<E>
BigList.BlockNode. getBlock()
Gets the block stored by this node.BigList.Block<T>
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.Block Modifier and Type Method Description private 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.Block Constructor Description Block(BigList.Block<T> that)
BlockNode(BigList.BlockNode<E> parent, int relPos, BigList.Block<E> block, BigList.BlockNode<E> rightFollower, BigList.BlockNode<E> leftFollower)
Constructs a new node.
-