Uses of Interface
org.codelibs.jhighlight.fastutil.objects.ObjectList
-
Packages that use ObjectList Package Description org.codelibs.jhighlight.fastutil.objects -
-
Uses of ObjectList in org.codelibs.jhighlight.fastutil.objects
Classes in org.codelibs.jhighlight.fastutil.objects that implement ObjectList Modifier and Type Class Description classAbstractObjectList<K>An abstract class providing basic methods for lists implementing a type-specific list interface.static classAbstractObjectList.ObjectSubList<K>classObjectArrayList<K>A type-specific array-based list; provides some additional methods that use polymorphism to avoid (un)boxing.Fields in org.codelibs.jhighlight.fastutil.objects declared as ObjectList Modifier and Type Field Description protected ObjectList<K>AbstractObjectList.ObjectSubList. lThe list this sublist restricts.Methods in org.codelibs.jhighlight.fastutil.objects that return ObjectList Modifier and Type Method Description ObjectList<K>AbstractObjectList. objectSubList(int from, int to)Deprecated.ObjectList<K>ObjectList. objectSubList(int from, int to)Deprecated.As offastutil5, replaced bysubList(int,int).static <K> ObjectList<K>ObjectIterators. pour(Iterator<K> i)Pours an iterator, returning a type-specific list.static <K> ObjectList<K>ObjectIterators. pour(Iterator<K> i, int max)Pours an iterator, returning a type-specific list, with a limit on the number of elements.ObjectList<K>AbstractObjectList.ObjectSubList. subList(int from, int to)ObjectList<K>AbstractObjectList. subList(int from, int to)ObjectList<K>ObjectList. subList(int from, int to)Returns a type-specific view of the portion of this list from the indexfrom, inclusive, to the indexto, exclusive.Constructors in org.codelibs.jhighlight.fastutil.objects with parameters of type ObjectList Constructor Description ObjectArrayList(ObjectList<? extends K> l)Creates a new array list and fills it with a given type-specific list.ObjectSubList(ObjectList<K> l, int from, int to)
-