Uses of Class
com.mckoi.util.IntegerListBlockInterface
Packages that use IntegerListBlockInterface
-
Uses of IntegerListBlockInterface in com.mckoi.util
Subclasses of IntegerListBlockInterface in com.mckoi.utilModifier and TypeClassDescriptionstatic class
The block that contains the actual int values of the list.Fields in com.mckoi.util declared as IntegerListBlockInterfaceModifier and TypeFieldDescriptionIntegerListBlockInterface.next
The next block in the chain.IntegerListBlockInterface.previous
The previous block in the chain.Methods in com.mckoi.util that return IntegerListBlockInterfaceModifier and TypeMethodDescriptionprotected abstract IntegerListBlockInterface
AbstractBlockIntegerList.newListBlock()
Creates a new ListBlock for the given implementation.protected IntegerListBlockInterface
BlockIntegerList.newListBlock()
Creates a new ListBlock to fill with ints.Methods in com.mckoi.util with parameters of type IntegerListBlockInterfaceModifier and TypeMethodDescriptionfinal void
BlockIntegerList.IntArrayListBlock.copyTo
(IntegerListBlockInterface dest_block) Copies all the data from this block into the given destination block.abstract void
IntegerListBlockInterface.copyTo
(IntegerListBlockInterface dest_block) Copies all the data from this block into the given destination block.protected void
AbstractBlockIntegerList.deleteListBlock
(IntegerListBlockInterface list_block) Called when the class decides this ListBlock is no longer needed.protected void
BlockIntegerList.deleteListBlock
(IntegerListBlockInterface list_block) Called when the class decides this ListBlock is no longer needed.final void
BlockIntegerList.IntArrayListBlock.moveTo
(IntegerListBlockInterface dest_block, int dest_index, int length) Moves a set of values from the end of this block and inserts it into the given block at the destination index specified.abstract void
IntegerListBlockInterface.moveTo
(IntegerListBlockInterface dest_block, int dest_index, int length) Moves a set of values from the end of this block and inserts it into the given block at the destination index specified.protected final int
AbstractBlockIntegerList.removeFromBlock
(int block_index, IntegerListBlockInterface block, int position) Removes the value from the given position in the specified block.Constructors in com.mckoi.util with parameters of type IntegerListBlockInterfaceModifierConstructorDescriptionConstructs the list from the given set of initial blocks.