Uses of Class
org.magicwerk.brownies.collections.primitive.CharBigList.CharBlock
-
Packages that use CharBigList.CharBlock Package Description org.magicwerk.brownies.collections.primitive This packages contains implementations of GapList and BigList for primitive data types. -
-
Uses of CharBigList.CharBlock in org.magicwerk.brownies.collections.primitive
Fields in org.magicwerk.brownies.collections.primitive declared as CharBigList.CharBlock Modifier and Type Field Description (package private) CharBigList.CharBlock
CharBigList.CharBlockNode. block
The stored blockMethods in org.magicwerk.brownies.collections.primitive that return CharBigList.CharBlock Modifier and Type Method Description private CharBigList.CharBlock
CharBigList.CharBlockNode. getCharBlock()
Gets the block stored by this node.CharBigList.CharBlock
CharBigList.CharBlock. ref()
Increment reference count as block is used by one CharBigList instance more.Methods in org.magicwerk.brownies.collections.primitive with parameters of type CharBigList.CharBlock Modifier and Type Method Description private void
CharBigList. addCharBlock(int index, CharBigList.CharBlock obj)
Adds a new element to the list.private void
CharBigList. doAddSplitCharBlock(int index, char element, int pos, CharBigList.CharBlock newCharBlock)
private CharBigList.CharBlockNode
CharBigList.CharBlockNode. insert(int index, CharBigList.CharBlock obj)
Inserts new node holding specified block at the position index.private CharBigList.CharBlockNode
CharBigList.CharBlockNode. insertOnLeft(int relIndex, CharBigList.CharBlock obj)
Inserts new node holding specified block on the node's left side.private CharBigList.CharBlockNode
CharBigList.CharBlockNode. insertOnRight(int relIndex, CharBigList.CharBlock obj)
Inserts new node holding specified block on the node's right side.private void
CharBigList.CharBlockNode. setCharBlock(CharBigList.CharBlock block)
Sets block to store by this node.Constructors in org.magicwerk.brownies.collections.primitive with parameters of type CharBigList.CharBlock Constructor Description CharBlock(CharBigList.CharBlock that)
CharBlockNode(CharBigList.CharBlockNode parent, int relPos, CharBigList.CharBlock block, CharBigList.CharBlockNode rightFollower, CharBigList.CharBlockNode leftFollower)
Constructs a new node.
-