Uses of Interface
it.unimi.dsi.fastutil.objects.ObjectList

Packages that use ObjectList
it.unimi.dsi.fastutil.bytes Provides type-specific classes for byte elements or keys. 
it.unimi.dsi.fastutil.chars Provides type-specific classes for character elements or keys. 
it.unimi.dsi.fastutil.ints Provides type-specific classes for integer elements or keys. 
it.unimi.dsi.fastutil.longs Provides type-specific classes for long elements or keys. 
it.unimi.dsi.fastutil.objects Provides type-specific classes for object elements or keys. 
it.unimi.dsi.fastutil.shorts Provides type-specific classes for short elements or keys. 
 

Uses of ObjectList in it.unimi.dsi.fastutil.bytes
 

Classes in it.unimi.dsi.fastutil.bytes that implement ObjectList
 class ByteArrayFrontCodedList
          Compact storage of lists of arrays using front coding.
 

Uses of ObjectList in it.unimi.dsi.fastutil.chars
 

Classes in it.unimi.dsi.fastutil.chars that implement ObjectList
 class CharArrayFrontCodedList
          Compact storage of lists of arrays using front coding.
 

Uses of ObjectList in it.unimi.dsi.fastutil.ints
 

Classes in it.unimi.dsi.fastutil.ints that implement ObjectList
 class IntArrayFrontCodedList
          Compact storage of lists of arrays using front coding.
 

Uses of ObjectList in it.unimi.dsi.fastutil.longs
 

Classes in it.unimi.dsi.fastutil.longs that implement ObjectList
 class LongArrayFrontCodedList
          Compact storage of lists of arrays using front coding.
 

Uses of ObjectList in it.unimi.dsi.fastutil.objects
 

Classes in it.unimi.dsi.fastutil.objects that implement ObjectList
 class AbstractObjectList<K>
          An abstract class providing basic methods for lists implementing a type-specific list interface.
static class AbstractObjectList.ObjectSubList<K>
           
 class ObjectArrayList<K>
          A type-specific array-based list; provides some additional methods that use polymorphism to avoid (un)boxing.
static class ObjectLists.EmptyList<K>
          An immutable class representing an empty type-specific list.
static class ObjectLists.Singleton<K>
          An immutable class representing a type-specific singleton list.
static class ObjectLists.SynchronizedList<K>
          A synchronized wrapper class for lists.
static class ObjectLists.UnmodifiableList<K>
          An unmodifiable wrapper class for lists.
 

Fields in it.unimi.dsi.fastutil.objects declared as ObjectList
protected  ObjectList<K> AbstractObjectList.ObjectSubList.l
          The list this sublist restricts.
protected  ObjectList<K> ObjectLists.SynchronizedList.list
           
protected  ObjectList<K> ObjectLists.UnmodifiableList.list
           
 

Methods in it.unimi.dsi.fastutil.objects that return ObjectList
 ObjectList<K> ObjectList.objectSubList(int from, int to)
          Deprecated. As of fastutil 5, replaced by subList(int,int).
 ObjectList<K> ObjectLists.EmptyList.objectSubList(int from, int to)
          Deprecated. 
 ObjectList<K> ObjectLists.SynchronizedList.objectSubList(int from, int to)
          Deprecated. 
 ObjectList<K> ObjectLists.UnmodifiableList.objectSubList(int from, int to)
          Deprecated. 
 ObjectList<K> AbstractObjectList.objectSubList(int from, int to)
          Deprecated. 
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.
static
<K> ObjectList<K>
ObjectLists.shuffle(ObjectList<K> l, Random random)
          Shuffles the specified list using the specified pseudorandom number generator.
static
<K> ObjectList<K>
ObjectLists.singleton(K element)
          Returns a type-specific immutable list containing only the specified element.
 ObjectList<K> ObjectList.subList(int from, int to)
          Returns a type-specific view of the portion of this list from the index from, inclusive, to the index to, exclusive.
 ObjectList<K> ObjectLists.EmptyList.subList(int from, int to)
           
 ObjectList<K> ObjectLists.Singleton.subList(int from, int to)
           
 ObjectList<K> ObjectLists.SynchronizedList.subList(int from, int to)
           
 ObjectList<K> ObjectLists.UnmodifiableList.subList(int from, int to)
           
 ObjectList<K> AbstractObjectList.subList(int from, int to)
           
 ObjectList<K> AbstractObjectList.ObjectSubList.subList(int from, int to)
           
static
<K> ObjectList<K>
ObjectLists.synchronize(ObjectList<K> l)
          Returns a synchronized type-specific list backed by the given type-specific list.
static
<K> ObjectList<K>
ObjectLists.synchronize(ObjectList<K> l, Object sync)
          Returns a synchronized type-specific list backed by the given type-specific list, using an assigned object to synchronize.
static
<K> ObjectList<K>
ObjectLists.unmodifiable(ObjectList<K> l)
          Returns an unmodifiable type-specific list backed by the given type-specific list.
 

Methods in it.unimi.dsi.fastutil.objects with parameters of type ObjectList
static
<K> ObjectBigList<K>
ObjectBigLists.asBigList(ObjectList<K> list)
          Returns a big list backed by the specified list.
static
<K> ObjectList<K>
ObjectLists.shuffle(ObjectList<K> l, Random random)
          Shuffles the specified list using the specified pseudorandom number generator.
static
<K> ObjectList<K>
ObjectLists.synchronize(ObjectList<K> l)
          Returns a synchronized type-specific list backed by the given type-specific list.
static
<K> ObjectList<K>
ObjectLists.synchronize(ObjectList<K> l, Object sync)
          Returns a synchronized type-specific list backed by the given type-specific list, using an assigned object to synchronize.
static
<K> ObjectList<K>
ObjectLists.unmodifiable(ObjectList<K> l)
          Returns an unmodifiable type-specific list backed by the given type-specific list.
 

Constructors in it.unimi.dsi.fastutil.objects with parameters of type ObjectList
AbstractObjectList.ObjectSubList(ObjectList<K> l, int from, int to)
           
ObjectArrayList(ObjectList<? extends K> l)
          Creates a new array list and fills it with a given type-specific list.
ObjectBigLists.ListBigList(ObjectList<K> list)
           
ObjectLists.SynchronizedList(ObjectList<K> l)
           
ObjectLists.SynchronizedList(ObjectList<K> l, Object sync)
           
ObjectLists.UnmodifiableList(ObjectList<K> l)
           
 

Uses of ObjectList in it.unimi.dsi.fastutil.shorts
 

Classes in it.unimi.dsi.fastutil.shorts that implement ObjectList
 class ShortArrayFrontCodedList
          Compact storage of lists of arrays using front coding.
 



Copyright © 2011. All Rights Reserved.