Uses of Class
org.magicwerk.brownies.collections.primitive.CharBigList.CharBlock
Packages that use CharBigList.CharBlock
Package
Description
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.CharBlockModifier and TypeFieldDescription(package private) CharBigList.CharBlockCharBigList.CharBlockNode.blockThe stored blockMethods in org.magicwerk.brownies.collections.primitive that return CharBigList.CharBlockModifier and TypeMethodDescriptionprivate CharBigList.CharBlockCharBigList.CharBlockNode.getCharBlock()Gets the block stored by this node.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.CharBlockModifier and TypeMethodDescriptionprivate voidCharBigList.addCharBlock(int index, CharBigList.CharBlock obj) Adds a new element to the list.private voidCharBigList.doAddSplitCharBlock(int index, char element, int pos, CharBigList.CharBlock newCharBlock) private CharBigList.CharBlockNodeCharBigList.CharBlockNode.insert(int index, CharBigList.CharBlock obj) Inserts new node holding specified block at the position index.private CharBigList.CharBlockNodeCharBigList.CharBlockNode.insertOnLeft(int relIndex, CharBigList.CharBlock obj) Inserts new node holding specified block on the node's left side.private CharBigList.CharBlockNodeCharBigList.CharBlockNode.insertOnRight(int relIndex, CharBigList.CharBlock obj) Inserts new node holding specified block on the node's right side.private voidCharBigList.CharBlockNode.setCharBlock(CharBigList.CharBlock block) Sets block to store by this node.Constructors in org.magicwerk.brownies.collections.primitive with parameters of type CharBigList.CharBlockModifierConstructorDescriptionprivateCharBlockNode(CharBigList.CharBlockNode parent, int relPos, CharBigList.CharBlock block, CharBigList.CharBlockNode rightFollower, CharBigList.CharBlockNode leftFollower) Constructs a new node.