Uses of Interface
org.magicwerk.brownies.collections.primitive.IFloatListable
-
Packages that use IFloatListable Package Description org.magicwerk.brownies.collections.primitive This packages contains implementations of GapList and BigList for primitive data types. -
-
Uses of IFloatListable in org.magicwerk.brownies.collections.primitive
Classes in org.magicwerk.brownies.collections.primitive that implement IFloatListable Modifier and Type Class Description class
FloatBigList
FloatBigList is a list optimized for storing large number of elements.(package private) static class
FloatBigList.FloatBlock
A block stores in maximum blockSize number of elements.protected static class
FloatBigList.ReadOnlyFloatBigList
A read-only version ofKey1List
.class
FloatGapList
Class {link FloatGapList} combines the strengths of bothArrayList
andLinkedList
.protected static class
FloatGapList.ReadOnlyList
A read-only version ofFloatGapList
.class
IFloatList
ClassIFloatList
is the abstract class which offers all interfaces implemented by ArrayList.protected static class
IFloatList.IFloatListableFromArray
Wrapper to treat an array asIFloatListable
.protected static class
IFloatList.IFloatListableFromCollection
Wrapper to treat aCollection
asIFloatListable
.protected static class
IFloatList.IFloatListableFromList
Wrapper to treat aList
asIFloatListable
.protected static class
IFloatList.IFloatListableFromMult
Wrapper to treat a repeated element asIFloatListable
.Methods in org.magicwerk.brownies.collections.primitive that return IFloatListable Modifier and Type Method Description protected IFloatListable
IFloatList. asIFloatListable(java.util.Collection<java.lang.Float> coll)
Return correct IFloatListable for passed collection.Methods in org.magicwerk.brownies.collections.primitive with parameters of type IFloatListable Modifier and Type Method Description protected boolean
FloatBigList. doAddAll(int index, IFloatListable list)
protected boolean
IFloatList. doAddAll(int index, IFloatListable list)
Helper method for adding multiple elements to the list.private void
FloatBigList. doAddAllHead(IFloatListable list, int addPos, int addLen, int space)
private void
FloatBigList. doAddAllMiddle(IFloatListable list, int addPos)
private void
FloatBigList. doAddAllTail(IFloatListable list, int addPos, int addLen, int space)
protected void
IFloatList. doInitAll(IFloatListable list)
protected void
IFloatList. doPutAll(int index, IFloatListable list)
protected boolean
IFloatList. doReplace(int index, int len, IFloatListable list)
protected void
IFloatList. replace(int index, int len, IFloatListable list)
-