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

Packages that use ReferenceList
it.unimi.dsi.fastutil.objects Provides type-specific classes for object elements or keys. 
 

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

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

Fields in it.unimi.dsi.fastutil.objects declared as ReferenceList
protected  ReferenceList<K> AbstractReferenceList.ReferenceSubList.l
          The list this sublist restricts.
protected  ReferenceList<K> ReferenceLists.SynchronizedList.list
           
protected  ReferenceList<K> ReferenceLists.UnmodifiableList.list
           
 

Methods in it.unimi.dsi.fastutil.objects that return ReferenceList
 ReferenceList<K> AbstractReferenceList.referenceSubList(int from, int to)
          Deprecated. 
 ReferenceList<K> ReferenceLists.EmptyList.referenceSubList(int from, int to)
          Deprecated. 
 ReferenceList<K> ReferenceLists.SynchronizedList.referenceSubList(int from, int to)
          Deprecated. 
 ReferenceList<K> ReferenceLists.UnmodifiableList.referenceSubList(int from, int to)
          Deprecated. 
 ReferenceList<K> ReferenceList.referenceSubList(int from, int to)
          Deprecated. As of fastutil 5, replaced by subList(int,int).
static
<K> ReferenceList<K>
ReferenceLists.shuffle(ReferenceList<K> l, Random random)
          Shuffles the specified list using the specified pseudorandom number generator.
static
<K> ReferenceList<K>
ReferenceLists.singleton(K element)
          Returns a type-specific immutable list containing only the specified element.
 ReferenceList<K> AbstractReferenceList.subList(int from, int to)
           
 ReferenceList<K> AbstractReferenceList.ReferenceSubList.subList(int from, int to)
           
 ReferenceList<K> ReferenceLists.EmptyList.subList(int from, int to)
           
 ReferenceList<K> ReferenceLists.Singleton.subList(int from, int to)
           
 ReferenceList<K> ReferenceLists.SynchronizedList.subList(int from, int to)
           
 ReferenceList<K> ReferenceLists.UnmodifiableList.subList(int from, int to)
           
 ReferenceList<K> ReferenceList.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.
static
<K> ReferenceList<K>
ReferenceLists.synchronize(ReferenceList<K> l)
          Returns a synchronized type-specific list backed by the given type-specific list.
static
<K> ReferenceList<K>
ReferenceLists.synchronize(ReferenceList<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> ReferenceList<K>
ReferenceLists.unmodifiable(ReferenceList<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 ReferenceList
static
<K> ReferenceBigList<K>
ReferenceBigLists.asBigList(ReferenceList<K> list)
          Returns a big list backed by the specified list.
static
<K> ReferenceList<K>
ReferenceLists.shuffle(ReferenceList<K> l, Random random)
          Shuffles the specified list using the specified pseudorandom number generator.
static
<K> ReferenceList<K>
ReferenceLists.synchronize(ReferenceList<K> l)
          Returns a synchronized type-specific list backed by the given type-specific list.
static
<K> ReferenceList<K>
ReferenceLists.synchronize(ReferenceList<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> ReferenceList<K>
ReferenceLists.unmodifiable(ReferenceList<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 ReferenceList
AbstractReferenceList.ReferenceSubList(ReferenceList<K> l, int from, int to)
           
ReferenceArrayList(ReferenceList<? extends K> l)
          Creates a new array list and fills it with a given type-specific list.
ReferenceBigLists.ListBigList(ReferenceList<K> list)
           
ReferenceLists.SynchronizedList(ReferenceList<K> l)
           
ReferenceLists.SynchronizedList(ReferenceList<K> l, Object sync)
           
ReferenceLists.UnmodifiableList(ReferenceList<K> l)
           
 



Copyright © 2011. All Rights Reserved.