Uses of Interface
org.codelibs.jhighlight.fastutil.objects.ObjectCollection
-
Packages that use ObjectCollection Package Description org.codelibs.jhighlight.fastutil.chars org.codelibs.jhighlight.fastutil.objects -
-
Uses of ObjectCollection in org.codelibs.jhighlight.fastutil.chars
Subinterfaces of ObjectCollection in org.codelibs.jhighlight.fastutil.chars Modifier and Type Interface Description static interfaceChar2ObjectMap.FastEntrySet<V>An entry set providing fast iteration.Fields in org.codelibs.jhighlight.fastutil.chars declared as ObjectCollection Modifier and Type Field Description protected ObjectCollection<V>Char2ObjectOpenHashMap. valuesCached collection of values.Methods in org.codelibs.jhighlight.fastutil.chars that return ObjectCollection Modifier and Type Method Description ObjectCollection<V>AbstractChar2ObjectMap. values()Returns a type-specific-set view of the values of this map.ObjectCollection<V>Char2ObjectMap. values()Returns a set view of the values contained in this map.ObjectCollection<V>Char2ObjectOpenHashMap. values() -
Uses of ObjectCollection in org.codelibs.jhighlight.fastutil.objects
Subinterfaces of ObjectCollection in org.codelibs.jhighlight.fastutil.objects Modifier and Type Interface Description interfaceObjectList<K>A type-specificList; provides some additional methods that use polymorphism to avoid (un)boxing.interfaceObjectSet<K>A type-specificSet; provides some additional methods that use polymorphism to avoid (un)boxing.Classes in org.codelibs.jhighlight.fastutil.objects that implement ObjectCollection Modifier and Type Class Description classAbstractObjectCollection<K>An abstract class providing basic methods for collections implementing a type-specific interface.classAbstractObjectList<K>An abstract class providing basic methods for lists implementing a type-specific list interface.static classAbstractObjectList.ObjectSubList<K>classAbstractObjectSet<K>An abstract class providing basic methods for sets implementing a type-specific interface.classObjectArrayList<K>A type-specific array-based list; provides some additional methods that use polymorphism to avoid (un)boxing.Methods in org.codelibs.jhighlight.fastutil.objects with parameters of type ObjectCollection Modifier and Type Method Description static <K> intObjectIterators. pour(Iterator<K> i, ObjectCollection<? super K> s)Pours an iterator into a type-specific collection.static <K> intObjectIterators. pour(Iterator<K> i, ObjectCollection<? super K> s, int max)Pours an iterator into a type-specific collection, with a limit on the number of elements.static <K> longObjectIterators. unwrap(Iterator<K> i, ObjectCollection<? super K> c)Unwraps an iterator into a type-specific collection.static <K> intObjectIterators. unwrap(Iterator<K> i, ObjectCollection<? super K> c, int max)Unwraps an iterator into a type-specific collection, with a limit on the number of elements.Constructors in org.codelibs.jhighlight.fastutil.objects with parameters of type ObjectCollection Constructor Description ObjectArrayList(ObjectCollection<? extends K> c)Creates a new array list and fills it with a given type-specific collection.
-