Uses of Class
cern.colt.PersistentObject

Packages that use PersistentObject 
Package Description
cern.colt.list  
cern.colt.map  
cern.jet.random  
cern.jet.random.engine  
  • Uses of PersistentObject in cern.colt.list

    Subclasses of PersistentObject in cern.colt.list 
    Modifier and Type Class Description
    class  AbstractByteList
    Abstract base class for resizable lists holding byte elements; abstract.
    class  AbstractCollection
    Abstract base class for resizable collections holding objects or primitive data types such as int, float, etc.
    class  AbstractDoubleList
    Abstract base class for resizable lists holding double elements; abstract.
    class  AbstractFloatList
    Abstract base class for resizable lists holding float elements; abstract.
    class  AbstractIntList
    Abstract base class for resizable lists holding int elements; abstract.
    class  AbstractList
    Abstract base class for resizable lists holding objects or primitive data types such as int, float, etc.
    class  AbstractLongList
    Abstract base class for resizable lists holding long elements; abstract.
    class  ByteArrayList
    Resizable list holding byte elements; implemented with arrays.
    class  DoubleArrayList
    Resizable list holding double elements; implemented with arrays.
    class  FloatArrayList
    Resizable list holding float elements; implemented with arrays.
    class  IntArrayList
    Resizable list holding int elements; implemented with arrays.
    class  LongArrayList
    Resizable list holding long elements; implemented with arrays.
    class  ObjectArrayList<T>
    Resizable list holding Object elements; implemented with arrays.
  • Uses of PersistentObject in cern.colt.map

    Subclasses of PersistentObject in cern.colt.map 
    Modifier and Type Class Description
    class  AbstractDoubleIntMap
    Abstract base class for hash maps holding (key,value) associations of type (double-->int).
    class  AbstractIntDoubleMap
    Abstract base class for hash maps holding (key,value) associations of type (int-->double).
    class  AbstractIntIntMap
    Abstract base class for hash maps holding (key,value) associations of type (int-->int).
    class  AbstractIntObjectMap<T>
    Abstract base class for hash maps holding (key,value) associations of type (int-->Object).
    class  AbstractLongObjectMap<T>
    Abstract base class for hash maps holding (key,value) associations of type (long-->Object).
    class  AbstractMap
    Abstract base class for hash maps holding objects or primitive data types such as int, float, etc. as keys and/or values.
    class  OpenDoubleIntHashMap
    Hash map holding (key,value) associations of type (double-->int); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.
    class  OpenIntDoubleHashMap
    Hash map holding (key,value) associations of type (int-->double); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.
    class  OpenIntIntHashMap
    Hash map holding (key,value) associations of type (int-->int); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.
    class  OpenIntObjectHashMap<T>
    Hash map holding (key,value) associations of type (int-->Object); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.
    class  OpenLongObjectHashMap<T>
    Hash map holding (key,value) associations of type (long-->Object); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.
    class  QuickOpenIntIntHashMap
    Status: Experimental; Do not use for production yet.
  • Uses of PersistentObject in cern.jet.random

    Subclasses of PersistentObject in cern.jet.random 
    Modifier and Type Class Description
    class  AbstractContinousDistribution
    Abstract base class for all continous distributions.
    class  AbstractDistribution
    Abstract base class for all random distributions.
    class  Uniform
    Uniform distribution; Math definition and animated definition.
  • Uses of PersistentObject in cern.jet.random.engine

    Subclasses of PersistentObject in cern.jet.random.engine 
    Modifier and Type Class Description
    class  DRand
    Quick medium quality uniform pseudo-random number generator.
    class  MersenneTwister
    MersenneTwister (MT19937) is one of the strongest uniform pseudo-random number generators known so far; at the same time it is quick.
    class  RandomEngine
    Abstract base class for uniform pseudo-random number generating engines.