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.CharBlockCharBigList.CharBlockNode. blockThe stored blockMethods in org.magicwerk.brownies.collections.primitive that return CharBigList.CharBlock Modifier and Type Method Description private CharBigList.CharBlockCharBigList.CharBlockNode. getCharBlock()Gets the block stored by this node.CharBigList.CharBlockCharBigList.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 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.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.
-